-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMain.java
43 lines (33 loc) Β· 1.2 KB
/
Main.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
package DP.P2629;
import java.io.*;
import java.util.*;
public class Main {
static int N, M;
static int[] chu;
static boolean[][] check;
public static void main(String[] args) throws Exception {
System.setIn(new FileInputStream("src/DP/P2629/input.txt"));
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
N = Integer.parseInt(br.readLine());
chu = new int[N];
check = new boolean[N+1][40001];
StringTokenizer st = new StringTokenizer(br.readLine());
for (int i = 0; i < N; i++) chu[i] = Integer.parseInt(st.nextToken());
calc(0, 0);
M = Integer.parseInt(br.readLine());
st = new StringTokenizer(br.readLine());
while (M-- > 0) {
if (check[N][Integer.parseInt(st.nextToken())]) System.out.print("Y ");
else System.out.print("N ");
}
System.out.println();
}
static void calc(int i, int weight) {
if (i > N || weight > 40000 || check[i][weight]) return;
check[i][weight] = true;
if (i == N) return;
calc(i+1, weight);
calc(i+1, weight + chu[i]);
calc(i+1, Math.abs(weight - chu[i]));
}
}