Skip to content

Commit 0c5a1e6

Browse files
committed
[DP] baekjoon-2629
1 parent 39d33f8 commit 0c5a1e6

File tree

4 files changed

+69
-0
lines changed

4 files changed

+69
-0
lines changed

โ€ŽREADME.md

+1
Original file line numberDiff line numberDiff line change
@@ -401,6 +401,7 @@
401401
| 34 | | [Baekjoon-12852 1๋กœ ๋งŒ๋“ค๊ธฐ 2](./src/DP/P12852) | |
402402
| 35 | | [Baekjoon-1149 RGB๊ฑฐ๋ฆฌ](./src/DP/P1149) | |
403403
| 36 | | [Programmers N์œผ๋กœ ํ‘œํ˜„](./src/DP/prg42895) | |
404+
| 37 | โญ๏ธ | [Baekjoon-2629 ์–‘ํŒ”์ €์šธ](./src/DP/P2629) | |
404405

405406
## Time Complexity
406407

โ€Žsrc/DP/P2629/Main.java

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
package DP.P2629;
2+
3+
import java.io.*;
4+
import java.util.*;
5+
6+
public class Main {
7+
8+
static int N, M;
9+
static int[] chu;
10+
static boolean[][] check;
11+
12+
public static void main(String[] args) throws Exception {
13+
System.setIn(new FileInputStream("src/DP/P2629/input.txt"));
14+
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
15+
16+
N = Integer.parseInt(br.readLine());
17+
chu = new int[N];
18+
check = new boolean[N+1][40001];
19+
20+
StringTokenizer st = new StringTokenizer(br.readLine());
21+
for (int i = 0; i < N; i++) chu[i] = Integer.parseInt(st.nextToken());
22+
23+
calc(0, 0);
24+
25+
M = Integer.parseInt(br.readLine());
26+
st = new StringTokenizer(br.readLine());
27+
while (M-- > 0) {
28+
if (check[N][Integer.parseInt(st.nextToken())]) System.out.print("Y ");
29+
else System.out.print("N ");
30+
}
31+
System.out.println();
32+
}
33+
34+
static void calc(int i, int weight) {
35+
if (i > N || weight > 40000 || check[i][weight]) return;
36+
check[i][weight] = true;
37+
38+
if (i == N) return;
39+
calc(i+1, weight);
40+
calc(i+1, weight + chu[i]);
41+
calc(i+1, Math.abs(weight - chu[i]));
42+
}
43+
}

โ€Žsrc/DP/P2629/README.md

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
## [baekjoon-2629] ์–‘ํŒ”์ €์šธ
2+
3+
![image](https://user-images.githubusercontent.com/22045163/113178190-4f16c800-9289-11eb-84be-98309288429e.png)
4+
![image](https://user-images.githubusercontent.com/22045163/113178261-5dfd7a80-9289-11eb-861e-0c4322f5d5c2.png)
5+
6+
### ํ’€์ด ๊ณผ์ •
7+
8+
์‹œ๊ฐ„ ์ œํ•œ, ๋ฉ”๋ชจ๋ฆฌ ์ œํ•œ์„ ๋”ฐ์กŒ์„ ๋•Œ DP๋กœ ํ’€์–ด์•ผ ํ•œ๋‹ค. (์ฒ˜์Œ์— ์กฐํ•ฉ์œผ๋กœ ๋ชจ๋“  ๊ฒฝ์šฐ์˜ ์ˆ˜๋ฅผ Set์— ๋„ฃ๊ณ  ๊ณ„์‚ฐํ–ˆ๋‹ค๊ฐ€ ๋ฉ”๋ชจ๋ฆฌ ์ดˆ๊ณผ๊ฐ€ ๋ฐœ์ƒํ•˜์˜€๋‹ค.)
9+
10+
๊ทธ๋Ÿผ ํ•œ `์‹œ์ `์—์„œ ๋”ฐ์งˆ ์ˆ˜ ์žˆ๋Š” ๊ฒฝ์šฐ์˜ ์ˆ˜๋Š” **๋‹ค์Œ์˜ ์„ธ ๊ฐ€์ง€**์ด๋ฉฐ, ์ด ๋•Œ์˜ `์‹œ์ `์€ **ํ˜„์žฌ ๋ช‡ ๋ฒˆ์งธ ์ถ”๊นŒ์ง€ ๊ณ„์‚ฐํ–ˆ๋Š”์ง€**์ด๋‹ค.
11+
12+
```text
13+
ํ˜„ ์‹œ์  : i๋ฒˆ์งธ ์ถ”๋ฅผ ๊ณ„์‚ฐ ์ค‘
14+
1. i๋ฒˆ์งธ ์ถ”๋ฅผ ์‚ฌ์šฉํ•˜์ง€ ์•Š์Œ
15+
2. i๋ฒˆ์งธ ์ถ”๋ฅผ ๊ตฌ์Šฌ ๋ฐ˜๋Œ€์ชฝ์— ์˜ฌ๋ฆผ
16+
3. i๋ฒˆ์งธ ์ถ”๋ฅผ ๊ตฌ์Šฌ์ชฝ์— ์˜ฌ๋ฆผ
17+
```
18+
19+
์œ„ ๊ฒฝ์šฐ์˜ ์ˆ˜์— ๋Œ€ํ•˜์—ฌ ๋ฉ”๋ชจ์ด์ œ์ด์…˜์„ ํ•ด๋‚˜๊ฐ€๋ฉด์„œ ์žฌ๊ท€๋ฅผ ๋Œ๋ฆฐ๋‹ค. ์‹œ๊ฐ„์ดˆ๊ณผ๊ฐ€ ๋ฐœ์ƒํ•˜์ง€ ์•Š๋„๋ก **์ข…๋ฃŒ์กฐ๊ฑด ๋ฐ ๋ฐฉ๋ฌธ ์—ฌ๋ถ€**๋ฅผ ์‹ ๊ฒฝ์จ์ค˜์•ผ ํ•˜๋Š”๋ฐ, `ํ˜„ ์‹œ์ ์—์„œ ์ถ”๋ฅผ ์‚ฌ์šฉํ–ˆ๊ฑฐ๋‚˜ / ์•ˆ ์‚ฌ์šฉํ–ˆ๊ฑฐ๋‚˜`์— ๋”ฐ๋ผ ๋ฐฉ๋ฌธ ์—ฌ๋ถ€์˜ `์ฐจ์›`์ด ๋‹ฌ๋ผ์ง€๋ฏ€๋กœ ๋ฐฉ๋ฌธ ๋ฐฐ์—ด์„ 2์ฐจ์› ๋ฐฐ์—ด๋กœ ์„ ์–ธํ•ด์•ผ ํ•œ๋‹ค.
20+
21+
![image](https://user-images.githubusercontent.com/22045163/113178358-753c6800-9289-11eb-8586-a0e08149aff4.png)

โ€Žsrc/DP/P2629/input.txt

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
4
2+
2 3 3 3
3+
3
4+
1 4 10

0 commit comments

Comments
ย (0)