結果
問題 | No.2403 "Eight" Bridges of Königsberg |
ユーザー | srjywrdnprkt |
提出日時 | 2023-08-06 02:45:18 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,832 bytes |
コンパイル時間 | 2,398 ms |
コンパイル使用メモリ | 201,340 KB |
実行使用メモリ | 15,004 KB |
最終ジャッジ日時 | 2024-04-23 23:18:12 |
合計ジャッジ時間 | 5,048 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 44 ms
6,944 KB |
testcase_05 | AC | 88 ms
6,940 KB |
testcase_06 | AC | 96 ms
6,940 KB |
testcase_07 | AC | 56 ms
6,944 KB |
testcase_08 | AC | 68 ms
6,940 KB |
testcase_09 | AC | 102 ms
6,940 KB |
testcase_10 | AC | 95 ms
6,940 KB |
testcase_11 | AC | 75 ms
6,940 KB |
testcase_12 | AC | 101 ms
6,940 KB |
testcase_13 | AC | 69 ms
6,944 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 19 ms
15,004 KB |
testcase_20 | AC | 6 ms
6,944 KB |
testcase_21 | AC | 11 ms
9,216 KB |
testcase_22 | AC | 17 ms
13,696 KB |
testcase_23 | AC | 17 ms
13,388 KB |
testcase_24 | AC | 15 ms
11,520 KB |
testcase_25 | AC | 13 ms
11,056 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 16 ms
11,984 KB |
testcase_29 | WA | - |
testcase_30 | AC | 9 ms
7,936 KB |
testcase_31 | AC | 19 ms
14,436 KB |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; struct UnionFind { int ngroup, N; vector<int> par; vector<int> siz; UnionFind(int _n) : par(_n), siz(_n), N(_n) { ngroup = _n; for(int i = 0; i < N; i++){ par[i] = i; siz[i] = 1; } } int root(int x) { if (par[x] == x) return x; return par[x] = root(par[x]); } int unite(int x, int y) { int rx = root(x); int ry = root(y); if (rx == ry) return rx; ngroup--; if (siz[rx] > siz[ry]) swap(rx, ry); par[rx] = ry; siz[ry] += siz[rx]; return ry; } bool same(int x, int y) { int rx = root(x); int ry = root(y); return rx == ry; } int size(int x){ return siz[root(x)]; } int group_count(){ return ngroup; } vector<vector<int>> groups(){ vector<int> rev(N); int nrt=0; for (int i=0; i<N; i++){ if (root(i) == i){ rev[i] = nrt; nrt++; } } vector<vector<int>> res(nrt); for (int i=0; i<N; i++){ res[rev[root(i)]].push_back(i); } return res; } }; int main(){ int N, M, x, y; ll ans=0, cnt; cin >> N >> M; UnionFind tree(N+1); vector<int> deg(N+1); for (int i=0; i<M; i++){ cin >> x >> y; tree.unite(x, y); deg[x]--; deg[y]++; } vector<vector<int>> g = tree.groups(); for (auto &x : g){ bool f=0; cnt = 0; for (auto y : x){ if (deg[y] != 0) f=1; if (deg[y] > 0) cnt += deg[y]; } ans += max(0LL, cnt-1) + f; } cout << ans-1 << endl; return 0; }