# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
509878 | 2022-01-14T11:28:14 Z | leinad2 | 조이터에서 친구를 만드는건 재밌어 (JOI20_joitter2) | C++17 | 3 ms | 4940 KB |
#include<bits/stdc++.h> using namespace std; int n, m, i, j, k, a, b, sz[100010], par[100010]; long long ans; int Find(int v){return v==par[v]?v:par[v]=Find(par[v]);} map<int, set<int> >adj[100010]; main() { scanf("%d %d", &n, &m); for(i=0;i++<n;)sz[i]=1,par[i]=i; while(m--) { scanf("%d %d", &a, &b); int x=a, y=b; a=Find(a);b=Find(b); if(a!=b) { if(adj[a].find(b)==adj[a].end()) { if(adj[b][a].find(x)==adj[b][a].end()) { adj[b][a].insert(x); ans+=sz[b]; } } else { ans-=1LL*(adj[a].size()-adj[a][b].size())*sz[a]; ans-=1LL*(adj[b].size())*sz[b]; ans+=1LL*sz[a]*sz[b]; ans+=1LL*(sz[b]-adj[a][b].size())*sz[a]; if(adj[a].size()<adj[b].size())swap(adj[a], adj[b]); for(auto p:adj[b])adj[a].insert(p); adj[b].clear(); adj[a].erase(b); sz[a]+=sz[b]; par[b]=a; ans+=1LL*adj[a].size()*sz[a]; } } printf("%lld\n", ans); } }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 3 ms | 4940 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 3 ms | 4940 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 3 ms | 4940 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |