# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
320924 | phathnv | Cloud Computing (CEOI18_clo) | C++11 | 1379 ms | 2156 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 mp make_pair
#define X first
#define Y second
#define taskname "CloudComputing"
using namespace std;
typedef long long ll;
typedef pair <int, int> ii;
const int C = 100001;
const ll INF = 1e18;
struct order{
int type; /// 0 buy, 1: sell
int c, f, v;
order(int _t, int _c, int _f, int _v){
type = _t;
c = _c;
f = _f;
v = _v;
}
};
int n, m;
ll dp[C], nxtDp[C];
vector <order> ords;
Compilation message (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... |