結果
問題 | No.1390 Get together |
ユーザー | shu8Cream |
提出日時 | 2021-02-13 09:14:49 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 60 ms / 2,000 ms |
コード長 | 1,325 bytes |
コンパイル時間 | 2,171 ms |
コンパイル使用メモリ | 212,096 KB |
実行使用メモリ | 14,208 KB |
最終ジャッジ日時 | 2024-07-20 11:32:50 |
合計ジャッジ時間 | 5,782 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 3 ms
5,376 KB |
testcase_06 | AC | 3 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 3 ms
5,376 KB |
testcase_09 | AC | 3 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 1 ms
5,376 KB |
testcase_16 | AC | 55 ms
14,208 KB |
testcase_17 | AC | 42 ms
14,080 KB |
testcase_18 | AC | 60 ms
14,208 KB |
testcase_19 | AC | 54 ms
14,208 KB |
testcase_20 | AC | 50 ms
14,208 KB |
testcase_21 | AC | 48 ms
14,208 KB |
testcase_22 | AC | 56 ms
14,208 KB |
testcase_23 | AC | 56 ms
14,208 KB |
testcase_24 | AC | 54 ms
14,208 KB |
testcase_25 | AC | 52 ms
14,208 KB |
testcase_26 | AC | 54 ms
14,208 KB |
testcase_27 | AC | 56 ms
14,208 KB |
testcase_28 | AC | 55 ms
14,208 KB |
testcase_29 | AC | 54 ms
14,208 KB |
testcase_30 | AC | 53 ms
14,080 KB |
testcase_31 | AC | 55 ms
14,208 KB |
ソースコード
/** * author: shu8Cream * created: 12.02.2021 21:19:22 **/ #include <bits/stdc++.h> using namespace std; #define rep(i,n) for (int i=0; i<(n); i++) #define all(x) (x).begin(), (x).end() using ll = long long; using P = pair<int,int>; using vi = vector<int>; using vvi = vector<vi>; struct UnionFind{ vector<int> par; vector<map<int, int>> mp; UnionFind(int n=0): par(n, -1), mp(n) {} int find(int x){ if(par[x] < 0) return x; return par[x] = find(par[x]); } bool unite(int x, int y){ x = find(x); y = find(y); if(x == y) return false; if(par[x] > par[y]) swap(x,y); //マージテク for(auto p : mp[y]){ mp[x][p.first] += p.second; } mp[y] = map<int,int>(); //メモリの解放 par[x] += par[y]; par[y] = x; return true; } bool same(int x, int y) {return find(x) == find(y);} int size(int x) {return -par[find(x)];} }; int main() { cin.tie(nullptr); ios::sync_with_stdio(false); int n,m; cin >> n >> m; UnionFind uf(m); vi f(n,-1); int ans = 0; rep(i,n){ int b,c; cin >> b >> c; --b; --c; if(f[c]>=0){ if(!uf.same(b,f[c])) ans++, uf.unite(b,f[c]); }else f[c]=b; } cout << ans << endl; }