-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTwo_seals.java
214 lines (206 loc) · 5.06 KB
/
Two_seals.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
/*
Problem at : https://codeforces.com/contest/837/problem/C
*/
import java.io.*;
import java.util.*;
public class Main {
public static void main (String[] args) throws IOException {
Scan sc = new Scan();
int n= sc.scanInt();
int x = sc.scanInt();
int y = sc.scanInt();
Sol sol = new Sol(n, x, y);
for(int i = 1; i <= n; ++i){
sol.put(i, sc.scanInt(), sc.scanInt());
}
sol.solve();
}
}
class Sol {
int n,a,b;
int[][] dp;
int[] xs,ys,cnt;
Sol(int n, int a, int b){
if(a > b){
int t = a;
a = b;
b = t;
}
this.n = n;
this.a = a;
this.b = b;
dp = new int[101][101];
xs = new int[n+1];
ys = new int[n+1];
cnt = new int[n+1];
}
void put(int i, int x, int y){
if(x > y){
int t = x;
x = y;
y = t;
}
if(dp[x][y] != 0){
cnt[i] = 1 + cnt[dp[x][y]];
}
dp[x][y] = i;
xs[i] = x;
ys[i] = y;
}
void solve(){
for(int i = 1; i <= a; ++i){
for(int j = i; j <= b; ++j){
if(dp[i][j] == 0){
if(xs[dp[i-1][j]]*ys[dp[i-1][j]] > xs[dp[i][j-1]]*ys[dp[i][j-1]]){
dp[i][j] = dp[i-1][j];
}
else
dp[i][j] = dp[i][j-1];
}
}
}
int max = 0;
for(int i = 1; i <= n; ++i){
int currX = xs[i];
int currY = ys[i];
int currA = currX*currY;
if(currX <= a && currY <= b){
int val1 = dp[a-currX][b];
if(val1 == i)
val1 = 0;
int val2 = dp[a][b-currY];
if(b-currY < a){
val2 = dp[b-currY][a];
}
if(val2 == i)
val2 = 0;
int currB = Math.max(xs[val1]*ys[val1], xs[val2]*ys[val2]);
if(currB > 0){
max = Math.max(max, currA + currB);
}
}
if(currX <= b && currY <= a){
int val1 = dp[a-currY][b];
if(val1 == i)
val1 = 0;
int val2 = dp[a][b-currX];
if(b-currX < a){
val2 = dp[b-currX][a];
}
if(val2 == i)
val2 = 0;
int currB = Math.max(xs[val1]*ys[val1], xs[val2]*ys[val2]);
if(currB > 0){
max = Math.max(max, currA + currB);
}
}
}
System.out.println(max);
}
}
class Scan
{
private byte[] buf=new byte[1024];
private int index;
private InputStream in;
private int total;
public Scan()
{
in=System.in;
}
public int scan()throws IOException
{
if(total<0)
throw new InputMismatchException();
if(index>=total)
{
index=0;
total=in.read(buf);
if(total<=0)
return -1;
}
return buf[index++];
}
public int scanInt()throws IOException
{
int integer=0;
int n=scan();
while(isWhiteSpace(n))
n=scan();
int neg=1;
if(n=='-')
{
neg=-1;
n=scan();
}
while(!isWhiteSpace(n))
{
if(n>='0'&&n<='9')
{
integer*=10;
integer+=n-'0';
n=scan();
}
else throw new InputMismatchException();
}
return neg*integer;
}
public double scanDouble()throws IOException
{
double doub=0;
int n=scan();
while(isWhiteSpace(n))
n=scan();
int neg=1;
if(n=='-')
{
neg=-1;
n=scan();
}
while(!isWhiteSpace(n)&&n!='.')
{
if(n>='0'&&n<='9')
{
doub*=10;
doub+=n-'0';
n=scan();
}
else throw new InputMismatchException();
}
if(n=='.')
{
n=scan();
double temp=1;
while(!isWhiteSpace(n))
{
if(n>='0'&&n<='9')
{
temp/=10;
doub+=(n-'0')*temp;
n=scan();
}
else throw new InputMismatchException();
}
}
return doub*neg;
}
public String scanString()throws IOException
{
StringBuilder sb=new StringBuilder();
int n=scan();
while(isWhiteSpace(n))
n=scan();
while(!isWhiteSpace(n))
{
sb.append((char)n);
n=scan();
}
return sb.toString();
}
private boolean isWhiteSpace(int n)
{
if(n==' '||n=='\n'||n=='\r'||n=='\t'||n==-1)
return true;
return false;
}
}