結果
問題 | No.2563 色ごとのグループ |
ユーザー | Mikan04y |
提出日時 | 2023-12-02 15:37:07 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 2,120 bytes |
コンパイル時間 | 6,555 ms |
コンパイル使用メモリ | 213,632 KB |
実行使用メモリ | 814,728 KB |
最終ジャッジ日時 | 2024-09-26 19:00:41 |
合計ジャッジ時間 | 5,695 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
7,296 KB |
testcase_01 | AC | 4 ms
6,400 KB |
testcase_02 | AC | 5 ms
9,472 KB |
testcase_03 | AC | 4 ms
6,400 KB |
testcase_04 | AC | 6 ms
10,368 KB |
testcase_05 | AC | 3 ms
5,376 KB |
testcase_06 | AC | 8 ms
16,480 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 7 ms
14,208 KB |
testcase_09 | AC | 65 ms
142,116 KB |
testcase_10 | AC | 33 ms
72,704 KB |
testcase_11 | AC | 57 ms
132,096 KB |
testcase_12 | AC | 68 ms
154,752 KB |
testcase_13 | AC | 23 ms
51,704 KB |
testcase_14 | MLE | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; const int MAX_N = 100009; // Union-Find // 計算量O(α(n)) struct UnionFind { int par[MAX_N]; // 親の番号 int rank[MAX_N]; // n要素で初期化 void init(int N) { for (int i = 0; i < N; i++) { par[i] = i; // 初めは全ての頂点が根 rank[i] = 0; // 初めは全ての頂点のランクが0 } } // 木の根を求める int root(int x) { if (par[x] == x) // 根 return x; else return par[x] = root(par[x]); // 経路圧縮 } // xとyが同じ集合に属するか否か bool same(int x, int y) { return root(x) == root(y); } // xとyの属する集合を併合 void unite(int x, int y) { x = root(x); y = root(y); if (x == y) // 既に同じ集合に属するなら何もしない return; if (rank[x] < rank[y]) // xのrankの方が小さいとき par[x] = y; // xをyを根としてつなぎ直す else { par[y] = x; // yをxを根としてつなぎ直す if (rank[x] == rank[y]) rank[x]++; } } }; int main() { int N, M; cin >> N >> M; vector<set<int>> color(N, set<int>({})); int C[N]; for (int i = 0; i < N; i++) { int c; cin >> c; c--; C[i] = c; color[c].insert(i); } vector<UnionFind> uf(N); for (int i = 0; i < N; i++) uf[i].init(N); for (int i = 0; i < M; i++) { int u, v; cin >> u >> v; u--, v--; if (C[u] == C[v]) uf[C[u]].unite(u, v); } int ans = 0; for (int i = 0; i < N; i++) { auto itr1 = color[i].begin(), itr2 = itr1; while (itr2 != color[i].end()) { if (!uf[C[*itr1]].same(*itr1, *itr2)) { uf[C[*itr1]].unite(*itr1, *itr2); ans++; } itr2++; } } cout << ans << endl; }