# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
445313 | 2021-07-17T12:20:08 Z | ics0503 | 조이터에서 친구를 만드는건 재밌어 (JOI20_joitter2) | C++17 | 13 ms | 20172 KB |
#include<stdio.h> #include<algorithm> #include<set> #include<vector> using namespace std; set<long long >edge[121212], redge[121212], ar[121212]; vector<long long >L[121212]; long long par[121212], sz[121212], rsz[121212]; long long find(long long x) { if (par[x] == x)return x; return par[x] = find(par[x]); } int main() { long long n, m; scanf("%lld%lld", &n, &m); long long i, j; long long ans = 0; for (i = 1; i <= n; i++)par[i] = i, sz[i] = rsz[i] = 1, L[i].push_back(i); for (i = 0; i < m; i++) { long long s, e; scanf("%lld%lld", &s, &e); long long ps = find(s), pe = find(e); if (ar[pe].find(s)!=ar[pe].end()) { printf("%lld\n", ans); continue; } if (redge[s].find(e) != redge[s].end()) { //union if (sz[ps] < sz[pe]) { swap(s, e), swap(ps, pe); } ans -= rsz[ps] * (rsz[ps] - 1); ans -= rsz[pe] * (rsz[pe] - 1); for (auto x : L[pe]) { for (long long nxt : edge[x]) { long long pnxt = find(nxt); if (pnxt == ps) ans -= rsz[ps]; } for (long long nxt : redge[x]) { long long pnxt = find(nxt); if (pnxt == ps) ans -= rsz[pe]; } L[ps].push_back(pe); if(ar[ps].find(x)!=ar[ps].end()) ar[ps].erase(x); } ans += rsz[pe] * ar[ps].size(); for (auto x : ar[pe]) { if (ar[ps].find(x) != ar[ps].end()) ans -= rsz[ps] + rsz[pe]; else if (find(x) != ps) { ans += rsz[ps]; ar[ps].insert(x); } } par[pe] = ps; rsz[ps] += rsz[pe]; ans += rsz[ps] * (rsz[ps] - 1); } else { edge[s].insert(e); redge[e].insert(s); ar[pe].insert(s); sz[ps]++; sz[pe]++; ans+=rsz[pe]; } printf("%lld\n", ans); } return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 13 ms | 20172 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 13 ms | 20172 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 13 ms | 20172 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |