結果
問題 | No.2403 "Eight" Bridges of Königsberg |
ユーザー | charmychachacha |
提出日時 | 2023-08-04 21:58:06 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 34 ms / 2,000 ms |
コード長 | 1,283 bytes |
コンパイル時間 | 1,837 ms |
コンパイル使用メモリ | 202,180 KB |
実行使用メモリ | 9,216 KB |
最終ジャッジ日時 | 2024-05-05 01:22:57 |
合計ジャッジ時間 | 3,335 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 5 ms
7,680 KB |
testcase_01 | AC | 4 ms
7,808 KB |
testcase_02 | AC | 4 ms
7,808 KB |
testcase_03 | AC | 5 ms
7,808 KB |
testcase_04 | AC | 17 ms
8,320 KB |
testcase_05 | AC | 30 ms
9,088 KB |
testcase_06 | AC | 34 ms
8,960 KB |
testcase_07 | AC | 21 ms
8,448 KB |
testcase_08 | AC | 24 ms
8,576 KB |
testcase_09 | AC | 34 ms
9,088 KB |
testcase_10 | AC | 32 ms
9,088 KB |
testcase_11 | AC | 26 ms
8,704 KB |
testcase_12 | AC | 34 ms
9,216 KB |
testcase_13 | AC | 25 ms
8,576 KB |
testcase_14 | AC | 5 ms
7,680 KB |
testcase_15 | AC | 4 ms
7,808 KB |
testcase_16 | AC | 5 ms
7,680 KB |
testcase_17 | AC | 5 ms
7,680 KB |
testcase_18 | AC | 5 ms
7,808 KB |
testcase_19 | AC | 5 ms
7,680 KB |
testcase_20 | AC | 4 ms
7,808 KB |
testcase_21 | AC | 4 ms
7,808 KB |
testcase_22 | AC | 5 ms
7,680 KB |
testcase_23 | AC | 5 ms
7,808 KB |
testcase_24 | AC | 5 ms
7,680 KB |
testcase_25 | AC | 4 ms
7,808 KB |
testcase_26 | AC | 5 ms
7,680 KB |
testcase_27 | AC | 5 ms
7,808 KB |
testcase_28 | AC | 5 ms
7,680 KB |
testcase_29 | AC | 5 ms
7,680 KB |
testcase_30 | AC | 5 ms
7,680 KB |
testcase_31 | AC | 6 ms
7,808 KB |
testcase_32 | AC | 5 ms
7,808 KB |
testcase_33 | AC | 5 ms
7,808 KB |
testcase_34 | AC | 5 ms
7,680 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; int par[200010]; int depth[200010]; int siz[200010]; void init(){ for(int i = 0; i < 200005; i++){ par[i] = i; depth[i] = 0; siz[i] = 1; } } int find(int x){ if(par[x] == x) return x; else return par[x] = find(par[x]); } void unite(int x, int y){ x = find(x); y = find(y); if(x == y) return; else if(depth[x] < depth[y]){ par[x] = y; siz[y] += siz[x]; }else{ par[y] = x; siz[x] += siz[y]; if(depth[x] == depth[y]) depth[x] ++; } } bool same(int x, int y){ return find(x) == find(y); } int sz(int x){ return siz[find(x)]; } int main(){ ios::sync_with_stdio(0); cin.tie(0); cout.tie(0); init(); int N, M; cin >> N >> M; int deg[200010] = {}; int A[200010], B[200010]; for(int i = 0; i < M; i++){ cin >> A[i] >> B[i]; unite(A[i], B[i]); deg[A[i]] ++; deg[B[i]] --; } int cmp = 0; int sum[200010] = {}; bool seen[200010] = {}; bool exist[200010] = {}; for(int i = 0; i < M; i++){ exist[find(A[i])] = true; } int ans = 0; for(int i = 1; i <= N; i++){ if(deg[i] > 0) sum[find(i)] += deg[i]; } for(int i = 1; i <= N; i++){ if(seen[find(i)] || !exist[find(i)]) continue; ans += max(sum[find(i)] - 1, 0); cmp ++; seen[find(i)] = true; } cout << ans + cmp - 1 << "\n"; }