-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBOJ14501.java
89 lines (72 loc) · 1.92 KB
/
BOJ14501.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.*;
class Pair{
int time;
int pay;
public Pair(int time, int pay){
this.time=time;
this.pay=pay;
}
public int getTime() {
return time;
}
public void setTime(int time) {
this.time = time;
}
public int getPay() {
return pay;
}
public void setPay(int pay) {
this.pay = pay;
}
@Override
public String toString() {
return "Pair{" +
"time=" + time +
", pay=" + pay +
'}';
}
}
public class Main {
static BufferedReader br;
static StringTokenizer st;
static int n;
static Pair[] counsel;
static int[] dp;
static int Max=0;
public static void main(String[] args) {
br = new BufferedReader(new InputStreamReader(System.in));
try{
st = new StringTokenizer(br.readLine());
n=Integer.parseInt(st.nextToken());
counsel=new Pair[16];
dp=new int[16];
int time;
int pay;
for(int i=1; i<=n; i++) {
st = new StringTokenizer(br.readLine());
time=Integer.parseInt(st.nextToken());
pay=Integer.parseInt(st.nextToken());
counsel[i]=new Pair(time, pay);
}
dfs( 1);
System.out.println(Max);
}catch (Exception e){
System.out.println(e);
System.exit(0);
}
}
public static void dfs(int day){
if(day==n+1)
return;
dfs(day+1);
int possible=day+(counsel[day].getTime()-1);
if(possible>n)
return;
dp[day]=counsel[day].getPay();
for(int i=day+counsel[day].getTime(); i<=n; i++)
dp[day]=Math.max(dp[day], counsel[day].getPay()+dp[i]);
Max=Math.max(Max, dp[day]);
}
}