# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
58165 | khsoo01 | Candies (JOI18_candies) | C++11 | 1171 ms | 30524 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;
typedef long long ll;
typedef pair<ll,ll> pll;
const ll N = 200005, inf = 1e18;
ll n, a[N], par[N];
bool dead[N];
set<pll> val, idx;
ll Find (ll X) {
if(par[X] == X) return X;
return par[X] = Find(par[X]);
}
ll Erase (ll X) {
ll A, B;
tie(A, B) = *idx.lower_bound(pll(Find(X), -inf));
idx.erase(pll(A, B));
val.erase(pll(B, A));
return B;
}
bool is_first (ll I) {
auto it = idx.lower_bound(pll(Find(I), -inf));
return (it == idx.begin());
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |