# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
766846 | 2023-06-26T08:10:52 Z | onjo0127 | 조이터에서 친구를 만드는건 재밌어 (JOI20_joitter2) | C++17 | 7 ms | 14292 KB |
#include <bits/stdc++.h> #define sz(V) ((int)V.size()) using namespace std; using pii = pair<int, int>; using ll = long long; int P[100009]; set<int> I[100009], A[100009], II[100009]; ll ans; int root(int x) { if(P[x] == x) return x; return P[x] = root(P[x]); } ll f(int x) { return 1LL * sz(A[x]) * (sz(I[x]) + sz(A[x]) - 1); } void merg(int u, int v) { if(sz(A[u]) + sz(I[u]) + sz(II[u]) > sz(A[v]) + sz(I[v]) + sz(II[v])) swap(u, v); ans -= f(u) + f(v); for(auto& it: A[u]) if(I[v].find(it) != I[v].end()) I[v].erase(it); for(auto& it: I[u]) if(A[v].find(it) == A[v].end()) I[v].insert(it); for(auto& it: II[u]) II[v].insert(it); for(auto& it: A[u]) A[v].insert(it); ans += f(v); P[u] = v; } int main() { int N, M; scanf("%d%d", &N, &M); for(int i=1; i<=N; i++) { P[i] = i; A[i] = {i}; } while(M--) { int u, v; scanf("%d%d", &u, &v); int U = root(u), V = root(v); if(U != V) { ans -= f(V); I[V].insert(u); II[V].insert(U); ans += f(V); if(II[U].find(V) != II[U].end()) merg(U, V); } printf("%lld\n", ans); } return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 7 ms | 14292 KB | Output is correct |
2 | Correct | 7 ms | 14292 KB | Output is correct |
3 | Incorrect | 7 ms | 14292 KB | Output isn't correct |
4 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 7 ms | 14292 KB | Output is correct |
2 | Correct | 7 ms | 14292 KB | Output is correct |
3 | Incorrect | 7 ms | 14292 KB | Output isn't correct |
4 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 7 ms | 14292 KB | Output is correct |
2 | Correct | 7 ms | 14292 KB | Output is correct |
3 | Incorrect | 7 ms | 14292 KB | Output isn't correct |
4 | Halted | 0 ms | 0 KB | - |