# 494.Target-Sum

## 494. Target Sum

## 题目地址

<https://leetcode.com/problems/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 1:
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:
The length of the given array is positive and will not exceed 20.
The sum of elements in the given array will not exceed 1000.
Your output answer is guaranteed to be fitted in a 32-bit integer.
```

## 代码

### Approach #1 Brute Force

```java
class Solution {
  int count = 0;
  public int findTargetSumWays(int[] nums, int target) {
        calculte(nums, 0, 0, target);
    return count;
  }

  private void calculate(int[] nums, int i, int sum, int target) {
    if (i == nums.length) {
      if (sum == target) {
        count++;
      }
    } else {
      calculate(nums, i + 1, sum + nums[i], target);
      calculate(nums, i + 1, sum - nums[i], target);
    }
  }
}
```

### Approach #2 Recursion with Memoziation

```java
class Solution {
  int count = 0;
  public int findTargetSumWays(int[] nums, int S) {
    int[][] memo = new int[nums.length][2001];
    for (int[] row: memo) {
      Arrays.fill(row, Integer.MIN_VALUE);
    }
    return calculate(nums, 0, 0, S, memo);
  }

  private int calculate(int[] nums, int i, int sum, int S, int[][] memo) {
    if (i == nums.length) {
      if (sum == S) {
        return 1;
      } else {
        return 0;
      }
    } else {
      if (memo[i][sum + 1000] != Integer.MIN_VALUE) {
        return memo[i][sum + 1000];
      }
      int add = calculate(nums, i + 1, sum + nums[i], S, memo);
      int subtract = calculate(nums, i + 1, sum - nums[i], S, memo);
      memo[i][sum + 1000] = add + subtract;
      return memo[i][sum + 1000];
    }
  }
}
```


---

# 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://wentao-shao.gitbook.io/leetcode/graph-search/494.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.
