# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1006268 | devariaota | Cloud Computing (CEOI18_clo) | C++17 | 284 ms | 1440 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;
# define int long long
# define fir first
# define sec second
# define pb push_back
# define endl "\n"
const int cnst = 1e5+55;
bool mutipletestcase = 0;
//bool debug = false;
bool sorting(tuple<int, int, int, bool> a, tuple<int, int, int, bool> b) {
auto[a1, a2, a3, a4] = a;
auto[b1, b2, b3, b4] = b;
if(a1 == b1) return a4 > b4;
return a1 < b1;
}
void solve() {
int n; cin >> n;
vector<tuple<int, int, int, bool>> vec;
for(int i = 1; i<=n; i++) {
int a, b, c; cin >> a >> b >> c;
vec.pb({b, a, c, 0});
}
# | 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... |