-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBruteMain.java
47 lines (36 loc) · 1.1 KB
/
BruteMain.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
47
package b14501;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class BruteMain {
static int N;
static int[] T;
static int[] P;
static int max = 0;
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
N = Integer.parseInt(br.readLine());
T = new int[N];
P = new int[N];
for(int i = 0; i < N; i++) {
StringTokenizer st = new StringTokenizer(br.readLine());
T[i] = Integer.parseInt(st.nextToken());
P[i] = Integer.parseInt(st.nextToken());
}
dfs(0, 0);
System.out.println(max);
}
public static void dfs(int day, int sum) {
if (day >= N) {
max = Math.max(max, sum);
return;
}
if (day + T[day] <= N) {
// 상담을 하는 경우
dfs(day + T[day], sum + P[day]);
}
// 상담을 하지 않는 경우
dfs(day + 1, sum);
}
}