結果
問題 | No.1390 Get together |
ユーザー | ゆにぽけ |
提出日時 | 2024-03-10 08:10:20 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 64 ms / 2,000 ms |
コード長 | 2,101 bytes |
コンパイル時間 | 1,429 ms |
コンパイル使用メモリ | 137,540 KB |
実行使用メモリ | 16,668 KB |
最終ジャッジ日時 | 2024-09-29 21:29:57 |
合計ジャッジ時間 | 5,012 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 1 ms
6,816 KB |
testcase_03 | AC | 3 ms
6,820 KB |
testcase_04 | AC | 2 ms
6,820 KB |
testcase_05 | AC | 3 ms
6,820 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | AC | 3 ms
6,816 KB |
testcase_08 | AC | 2 ms
6,816 KB |
testcase_09 | AC | 3 ms
6,816 KB |
testcase_10 | AC | 2 ms
6,816 KB |
testcase_11 | AC | 2 ms
6,820 KB |
testcase_12 | AC | 2 ms
6,816 KB |
testcase_13 | AC | 2 ms
6,816 KB |
testcase_14 | AC | 1 ms
6,816 KB |
testcase_15 | AC | 1 ms
6,820 KB |
testcase_16 | AC | 59 ms
14,184 KB |
testcase_17 | AC | 41 ms
11,216 KB |
testcase_18 | AC | 58 ms
16,668 KB |
testcase_19 | AC | 64 ms
14,124 KB |
testcase_20 | AC | 58 ms
12,112 KB |
testcase_21 | AC | 58 ms
12,032 KB |
testcase_22 | AC | 60 ms
14,608 KB |
testcase_23 | AC | 60 ms
14,452 KB |
testcase_24 | AC | 59 ms
14,644 KB |
testcase_25 | AC | 60 ms
14,184 KB |
testcase_26 | AC | 64 ms
14,252 KB |
testcase_27 | AC | 61 ms
14,168 KB |
testcase_28 | AC | 63 ms
14,224 KB |
testcase_29 | AC | 62 ms
14,220 KB |
testcase_30 | AC | 61 ms
14,140 KB |
testcase_31 | AC | 61 ms
14,192 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <array> #include <iterator> #include <string> #include <cctype> #include <cstring> #include <cstdlib> #include <cassert> #include <cmath> #include <ctime> #include <iomanip> #include <numeric> #include <stack> #include <queue> #include <map> #include <unordered_map> #include <set> #include <unordered_set> #include <bitset> #include <random> #include <utility> #include <functional> using namespace std; #include<algorithm> #include<vector> #include<cassert> using namespace std; struct UnionFind { private: int n; vector<int> par,siz; public: UnionFind(int n) :n(n),par(n,-1),siz(n,1) {} int root(int u) { assert(0 <= u && u < n); return (par[u] < 0 ? u:par[u] = root(par[u])); } bool same(int u,int v) { assert(0 <= u && u < n && 0 <= v && v < n); return root(u) == root(v); } bool unite(int u,int v) { assert(0 <= u && u < n && 0 <= v && v < n); u = root(u),v = root(v); if(u == v) return false; if(siz[u] < siz[v]) swap(u,v); siz[u] += siz[v]; par[v] = u; return true; } int size(int u) { assert(0 <= u && u < n); return siz[root(u)]; } vector<vector<int>> components() { vector<vector<int>> ret(n); for(int u = 0;u < n;u++) ret[root(u)].push_back(u); ret.erase(remove_if(ret.begin(),ret.end(),[](vector<int> v) { return v.empty();}),ret.end()); return ret; } }; void Main() { int N,M; cin >> N >> M; vector<vector<int>> B(M); for(int i = 0;i < N;i++) { int b,c; cin >> b >> c; b--; c--; B[b].push_back(c); } UnionFind uf(N); for(int i = 0;i < M;i++) { for(int j = 0;j + 1 < (int)B[i].size();j++) { uf.unite(B[i][j],B[i][j + 1]); } } vector<int> cnt(N); for(int i = 0;i < M;i++) { if(!B[i].empty()) { int cur = B[i].front(); cur = uf.root(cur); cnt[cur]++; } } int ans = 0; for(int i = 0;i < N;i++) { if(i == uf.root(i) && cnt[i] > 0) { ans += cnt[i] - 1; } } cout << ans << "\n"; } int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int tt = 1; /* cin >> tt; */ while(tt--) Main(); }