-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMain.java
44 lines (35 loc) Β· 1.12 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
44
package DFS.P14501;
import java.io.*;
import java.util.*;
public class Main {
static int N;
static int[][] schedule;
static int ans = 0;
public static void main(String[] args) throws Exception {
System.setIn(new FileInputStream("src/DFS/P14501/input.txt"));
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
N = Integer.parseInt(br.readLine());
schedule = new int[N][2];
for (int i = 0; i < N; i++) {
StringTokenizer st = new StringTokenizer(br.readLine());
schedule[i][0] = Integer.parseInt(st.nextToken());
schedule[i][1] = Integer.parseInt(st.nextToken());
}
dfs(0, 0);
System.out.println(ans);
}
static void dfs(int start, int sum) {
if (start == N) {
ans = Math.max(ans, sum);
return;
}
for (int i = start; i < N; i++) {
int to = i + schedule[i][0] - 1;
if (to < N) {
dfs(to + 1, sum + schedule[i][1]);
} else {
ans = Math.max(ans, sum);
}
}
}
}