# Target Sum

You are given a list of non-negative integers, a1, a2, ..., an, and a target, S. Now you have 2 symbols`+`and`-`. For each integer, you should choose one from`+`and`-`as its new symbol.

Find out how many ways to assign symbols to make sum of integers equal to target S.

## Example

```
Input: nums is [1, 1, 1, 1, 1], S is 3. 

Output: 5

Explanation:
-1+1+1+1+1 = 3
+1-1+1+1+1 = 3
+1+1-1+1+1 = 3
+1+1+1-1+1 = 3
+1+1+1+1-1 = 3

There are 5 ways to assign symbols to make the sum of nums be target 3.
```

## Note

DFS 对数组的元素进行加减，pos控制第几个元素。

记忆化递归：DFS 函数需要返回int，递归返回1或0，全局map来进行缓存，key可以是位置和当前的和

## Code

```java
class Solution {
    int count = 0;
    public int findTargetSumWays(int[] nums, int S) {
        helper(nums, 0, 0, S);

        return count;
    }

    private void helper(int[] nums, int pos, int sum, int S) {
        if (pos == nums.length) {
            if (sum == S) {
                count++;
            }    
            return;
        }

        helper(nums, pos + 1, sum - nums[pos], S);
        helper(nums, pos + 1, sum + nums[pos], S);
    }
}
```

```java
class Solution {
    HashMap<String, Integer> map;
    public int findTargetSumWays(int[] nums, int S) {
        map = new HashMap<>();

        return dfs(nums, 0, 0, S);
    }

    private int dfs(int[] nums, int pos, int sum, int S) {
        String key = pos + " " + sum;
        if (map.containsKey(key)) {
            return map.get(key);
        }

        if (pos == nums.length) {
            if (sum == S) {
                return 1;
            } else {
                return 0;
            }
        }

        int add   = dfs(nums, pos + 1, sum - nums[pos], S);
        int minus = dfs(nums, pos + 1, sum + nums[pos], S);
        int res = add + minus;
        map.put(key, res);

        return res;
    }
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://luj.gitbook.io/code/dfs/enumeration/target-sum.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
