# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
153945 | karma | Cloud Computing (CEOI18_clo) | C++14 | 399 ms | 1416 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#define pb emplace_back
#define ll long long
using namespace std;
const int N = int(2e3) + 7;
const int M = N * 55;
const ll oo = (ll)1e18;
struct TComp{
int c, f, v;
bool operator<(const TComp& o)const& {
return f > o.f || (f == o.f && v < o.v);
}
};
vector<TComp> v;
ll f[M], res = 0;
int n, m;
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0), cout.tie(0);
if(fopen("test.inp", "r")) {
freopen("test.inp", "r", stdin);
freopen("test.out", "w", stdout);
}
cin >> n; v.resize(n);
for(TComp& comp: v) {
cin >> comp.c >> comp.f >> comp.v;
comp.v *= -1;
}
cin >> m; m += n; v.resize(m);
for(int i = n; i < m; ++i) {
cin >> v[i].c >> v[i].f >> v[i].v;
v[i].c *= -1;
}
fill(f, f + M, -oo);
f[0] = 0;
sort(v.begin(), v.end());
for(TComp& comp: v) {
if(comp.c > 0) {
for(int i = int(1e5); i >= comp.c; --i)
f[i] = max(f[i - comp.c] + comp.v, f[i]);
} else {
for(int i = 0, lim = int(1e5) + comp.c; i <= lim; ++i)
f[i] = max(f[i - comp.c] + comp.v, f[i]);
}
}
for(int i = 0; i < int(1e5); ++i) res = max(res, f[i]);
cout << res;
}
컴파일 시 표준 에러 (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... |