# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
480330 | Tadiorn | Cloud Computing (CEOI18_clo) | C++14 | 1853 ms | 3620 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>
#define MAXN 2010
#define INF 1000000000000000000LL
using namespace std;
struct data
{
long long c;
long long f;
long long v;
};
data a[2*MAXN];
bool cmp(data x, data y)
{
if(x.f > y.f) return true;
else if(x.f < y.f) return false;
else return x.c > y.c;
}
long long prevNiz[100*MAXN];
long long tr[100*MAXN];
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(0); cout.tie(0); cerr.tie(0);
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... |