# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
587530 | Tekor | Team Contest (JOI22_team) | C++17 | 2086 ms | 6356 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 ll long long
#define pb push_back
#define all(v) v.begin(),v.end()
void boos() {
ios_base :: sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
}
const int N = 3e5 + 100;
const ll LLINF = (ll)1e18;
ll a[N],b[N],c[N];
int n;
bool cmp(int x,int y) {
return a[x] < a[y];
}
bool cmp1(int x,int y) {
return b[x] < b[y];
}
ll check(ll x,ll y,ll t) {
bool ch = 0,ch1 = 0,ch2 = 0;
for(int i = 1;i <= n;i++) {
if(a[i] == x && b[i] < y && c[i] < t)ch = 1;
if(a[i] < x && b[i] == y && c[i] < t)ch1 = 1;
if(a[i] < x && b[i] < y && c[i] == t)ch2 = 1;
}
if(ch && ch1 && ch2)return x + y + t;
else return -1;
}
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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |