-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path1884.cpp
94 lines (94 loc) · 2.58 KB
/
1884.cpp
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
// Ivan Carvalho
// Solution to https://www.beecrowd.com.br/judge/problems/view/1884
#include <algorithm>
#include <cstdio>
#include <vector>
#define gc getchar_unlocked
void getint(int &x) {
register int c = gc();
x = 0;
for (; (c < 48 || c > 57); c = gc())
;
for (; c > 47 && c < 58; c = gc()) {
x = (x << 1) + (x << 3) + c - 48;
}
}
#define MAXN 2001
using namespace std;
typedef long long ll;
const ll INF = 1e9 + 1;
const ll NEG = -INF;
ll X[MAXN], Y[MAXN], recompensa[MAXN];
bool disponivel[MAXN];
vector<int> resta;
bool comp(int x, int y) { return X[x] > X[y]; }
ll dp[MAXN][MAXN];
ll solve(ll cara, ll k) {
if (dp[cara][k] != -1) return dp[cara][k];
if (cara == resta.size() - 1) {
if (k != 0) return dp[cara][k] = 0;
return dp[cara][k] = X[resta[cara]];
}
ll minimo =
max(solve(cara + 1, k) - recompensa[resta[cara]], X[resta[cara]]);
if (k != 0) minimo = min(minimo, solve(cara + 1, k - 1));
return dp[cara][k] = minimo;
}
int main() {
int TC;
getint(TC);
while (TC--) {
resta.clear();
int n, k, jafoi = 0, templife;
ll life;
getint(n);
getint(templife);
getint(k);
life = ll(templife);
for (int i = 1; i <= n; i++) {
int tempx, tempy;
getint(tempx);
getint(tempy);
X[i] = ll(tempx);
Y[i] = ll(tempy);
disponivel[i] = true;
recompensa[i] = Y[i] - X[i];
}
while (jafoi != n) {
int escolhido = -1;
ll maior_recompensa = NEG;
for (int i = 1; i <= n; i++) {
if (!disponivel[i]) continue;
if (life >= X[i] && recompensa[i] > maior_recompensa) {
escolhido = i;
maior_recompensa = recompensa[i];
}
}
if (maior_recompensa >= 0) {
jafoi++;
life += recompensa[escolhido];
disponivel[escolhido] = false;
continue;
} else
break;
}
if (jafoi == n) {
printf("Y\n");
continue;
}
for (int i = 1; i <= n; i++) {
if (disponivel[i]) resta.push_back(i);
}
sort(resta.begin(), resta.end(), comp);
for (int i = 0; i < resta.size(); i++) {
for (int j = 0; j <= k; j++) {
dp[i][j] = -1;
}
}
if (life > solve(0, k))
printf("Y\n");
else
printf("N\n");
}
return 0;
}