# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
493287 | Alex_tz307 | Cloud Computing (CEOI18_clo) | C++17 | 1089 ms | 1868 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
const int kN = 4e3;
const int64_t INF = 1e18L;
struct transaction {
int c, f, v;
void read() {
cin >> c >> f >> v;
}
bool operator < (const transaction &rhs) const {
if (f != rhs.f) {
return f > rhs.f;
}
return c > rhs.c;
}
} a[kN];
void maxSelf(int64_t &x, int64_t y) {
if (x < y) {
x = y;
}
}
void testCase() {
int n;
# | 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... |