# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
917674 | berr | Cat Exercise (JOI23_ho_t4) | C++17 | 840 ms | 127712 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
const int mod = 1e9+7;
struct dsu{
int n;
vector<int> p, s;
vector<set<int>> st;
dsu(int _n, vector<int> g){
n = _n;
p.resize(n);
s.resize(n, 1);
st.resize(n);
iota(p.begin(), p.end(), 0);
}
int find(int x){
if(x==p[x]) return x;
return p[x] = find(p[x]);
}
int op(int x){
int t = find(x);
while(*st[t].begin()<=x&&st[t].size()>1){
st[t].erase(st[t].begin());
}
# | 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... |