結果
問題 | No.1293 2種類の道路 |
ユーザー | hitonanode |
提出日時 | 2020-11-20 23:40:03 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 75 ms / 2,000 ms |
コード長 | 1,511 bytes |
コンパイル時間 | 2,394 ms |
コンパイル使用メモリ | 219,892 KB |
実行使用メモリ | 19,328 KB |
最終ジャッジ日時 | 2024-07-23 13:58:49 |
合計ジャッジ時間 | 4,332 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 64 ms
8,192 KB |
testcase_10 | AC | 62 ms
8,192 KB |
testcase_11 | AC | 64 ms
8,192 KB |
testcase_12 | AC | 63 ms
8,192 KB |
testcase_13 | AC | 63 ms
8,192 KB |
testcase_14 | AC | 75 ms
19,200 KB |
testcase_15 | AC | 74 ms
19,328 KB |
testcase_16 | AC | 60 ms
11,392 KB |
testcase_17 | AC | 73 ms
13,824 KB |
testcase_18 | AC | 58 ms
15,232 KB |
testcase_19 | AC | 56 ms
11,392 KB |
testcase_20 | AC | 56 ms
11,392 KB |
testcase_21 | AC | 30 ms
5,376 KB |
testcase_22 | AC | 31 ms
5,376 KB |
testcase_23 | AC | 29 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using lint = long long; struct fast_ios { fast_ios(){ cin.tie(nullptr), ios::sync_with_stdio(false), cout << fixed << setprecision(20); }; } fast_ios_; #define FOR(i, begin, end) for(int i=(begin),i##_end_=(end);i<i##_end_;i++) #define REP(i, n) FOR(i,0,n) // UnionFind Tree (0-indexed), based on size of each disjoint set struct UnionFind { std::vector<int> par, cou; UnionFind(int N = 0) : par(N), cou(N, 1) { iota(par.begin(), par.end(), 0); } int find(int x) { return (par[x] == x) ? x : (par[x] = find(par[x])); } bool unite(int x, int y) { x = find(x), y = find(y); if (x == y) return false; if (cou[x] < cou[y]) std::swap(x, y); par[y] = x, cou[x] += cou[y]; return true; } int count(int x) { return cou[find(x)]; } bool same(int x, int y) { return find(x) == find(y); } }; int main() { int N, D, W; cin >> N >> D >> W; UnionFind uf1(N); while (D--) { int a, b; cin >> a >> b; a--, b--; uf1.unite(a, b); } UnionFind uf2(N); while (W--) { int a, b; cin >> a >> b; a--, b--; uf2.unite(a, b); } map<int, set<int>> mp; vector<int> sz(N); REP(i, N) mp[uf2.find(i)].insert(uf1.find(i)), sz[uf2.find(i)]++; lint ret = 0; REP(r, N) if (sz[r]) { lint s = 0; for (auto x : mp[r]) s += uf1.count(x); ret += s * sz[r] - sz[r]; } cout << ret << '\n'; }