# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
445316 | 2021-07-17T12:31:23 Z | ics0503 | 조이터에서 친구를 만드는건 재밌어 (JOI20_joitter2) | C++17 | 17 ms | 25804 KB |
#include<stdio.h> #include<algorithm> #include<set> #include<vector> using namespace std; set<long long >edge[121212], redge[121212], ar[121212], a[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 (ps == pe) { printf("%lld\n", ans); continue; } if (a[pe].find(s) != a[pe].end()) { 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); } } for (auto x : a[pe])a[ps].insert(x); par[pe] = ps; rsz[ps] += rsz[pe]; sz[ps] += sz[pe]; ans += rsz[ps] * (rsz[ps] - 1); } else { if (ar[pe].find(s) == ar[pe].end()) { edge[s].insert(e); redge[e].insert(s); ar[pe].insert(s); a[ps].insert(e); sz[ps]++; sz[pe]++; ans += rsz[pe]; } } printf("%lld\n", ans); } return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 17 ms | 25804 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 17 ms | 25804 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 17 ms | 25804 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |