# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
312195 | BeanZ | Cloud Computing (CEOI18_clo) | C++14 | 25 ms | 640 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
// I_Love_LPL
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define endl '\n'
const int N = 2e3 + 5;
ll dp[N][55];
struct viet{
ll c, f, v;
bool operator <(const viet& o) const{
return f > o.f;
}
}a[N];
ll c[N], v[N], f[N];
int main(){
ios_base::sync_with_stdio(false);
cin.tie(0);
if (fopen("A.inp", "r")){
freopen("test.inp", "r", stdin);
freopen("test.out", "w", stdout);
}
ll n;
cin >> n;
for (int i = 1; i <= n; i++){
cin >> a[i].c >> a[i].f >> a[i].v;
}
for (int i = 0; i <= n; i++){
for (int j = 0; j <= 50; j++){
dp[i][j] = -1e18;
}
}
dp[0][0] = 0;
sort(a + 1, a + n + 1);
ll ans = 0;
ll m;
cin >> m;
for (int i = 1; i <= m; i++){
cin >> c[i] >> f[i] >> v[i];
}
/*
for (int j = 1; j <= n; j++){
/*
for (int k = 0; k <= 50; k++){
if (k >= a[j].c) dp[j][k] = max(dp[j][k], dp[j - 1][k - a[j].c] - a[j].v);
//cout << dp[j][k] << " " << j << " " << k << endl;
}
for (int k = 50; k >= 0; k--){
for (int i = 1; i <= m; i++){
if (k >= a[j].c) dp[j][k] = max(dp[j][k], dp[j - 1][k - a[j].c] - a[j].v);
if ((k + c[i]) <= 50 && f[i] <= a[j].f) dp[j][k] = max(dp[j][k], dp[j][k + c[i]] + v[i]);
ans = max(ans, dp[j][k]);
}
}
}*/
for (int i = 1; i <= n; i++) dp[i][a[i].c] = -a[i].v;
for (int i = 1; i <= m; i++){
//cout << dp[1][0] << endl;
for (int j = n; j >= 1; j--){
for (int k = 0; k <= 50; k++){
if (k >= a[j].c) {
dp[j][k] = max(dp[j][k], dp[j - 1][k - a[j].c] - a[j].v);
}
//cout << dp[j][k] << " " << j << " " << k << endl;
}
//cout << dp[1][1] << endl;
for (int k = 0; k <= 50; k++){
//for (int i = 1; i <= m; i++){
//for (int k = 0; k <= 50; k++){
if ((k + c[i]) <= 50 && f[i] <= a[j].f) dp[j][k] = max(dp[j][k], dp[j][k + c[i]] + v[i]);
ans = max(ans, dp[j][k]);
//cout << dp[j][k] << " " << j << " " << k << endl;
//}
}
}
}
cout << ans;
}
/*
4
4 2200 700
2 1800 10
20 2550 9999
4 2000 750
3
1 1500 300
6 1900 1500
3 2400 4550
*/
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |