# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
834599 | kingfran1907 | Making Friends on Joitter is Fun (JOI20_joitter2) | C++14 | 9 ms | 19028 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 X first
#define Y second
using namespace std;
typedef long long llint;
const int maxn = 2e5+10;
int n, m;
int cale[maxn], siz[maxn];
llint sol = 0;
set< pair<int, int> > graph[maxn], graph2[maxn];
int fin(int x) {
if (x == cale[x]) return x;
return cale[x] = fin(cale[x]);
}
int get_size(int x) {
return graph[x].size() + graph2[x].size();
}
void remove(int x, set< pair<int, int> > &s, bool flag = false) {
auto iter = s.lower_bound({x, -1});
while (iter != s.end() && iter->X == x) {
sol -= siz[x] * flag;
iter = s.erase(iter);
}
}
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... |