-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPartialSum.java
46 lines (40 loc) · 1.08 KB
/
PartialSum.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import java.util.Scanner;
public class PartialSum {
static int a[];
static int n, k;
// iまででsumを作って、残りi以降を調べる
static boolean dfs(int i, int sum) {
// n個決め終わったら、今までの和sumがkと等しいかを返す。
if (i == n) {
return sum == k;
}
// a[i]を使わない場合
if (dfs(i + 1, sum)) {
return true;
}
// a[i]をを使う場合
if (dfs(i + 1, sum + a[i])) {
return true;
}
return false;
}
static void solve() {
if (dfs(0, 0)) {
System.out.println("Yes\n");
} else {
System.out.println("No\n");
}
}
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.print("n = ");
n = sc.nextInt();
a = new int[n];
for (int i = 0; i < a.length; i++) {
a[i] = sc.nextInt();
}
System.out.print("k = ");
k = sc.nextInt();
solve();
}
}