結果
問題 | No.307 最近色塗る問題多くない? |
ユーザー | kimiyuki |
提出日時 | 2016-03-01 22:18:04 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,300 bytes |
コンパイル時間 | 1,055 ms |
コンパイル使用メモリ | 78,640 KB |
実行使用メモリ | 19,612 KB |
最終ジャッジ日時 | 2024-09-24 13:14:03 |
合計ジャッジ時間 | 8,778 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
19,612 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 8 ms
6,944 KB |
testcase_08 | AC | 31 ms
6,944 KB |
testcase_09 | AC | 13 ms
6,944 KB |
testcase_10 | AC | 11 ms
6,940 KB |
testcase_11 | AC | 53 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,944 KB |
testcase_13 | AC | 24 ms
6,944 KB |
testcase_14 | AC | 3 ms
6,940 KB |
testcase_15 | AC | 4 ms
6,940 KB |
testcase_16 | AC | 4 ms
6,940 KB |
testcase_17 | AC | 14 ms
6,940 KB |
testcase_18 | AC | 30 ms
7,936 KB |
testcase_19 | AC | 33 ms
8,960 KB |
testcase_20 | AC | 4 ms
6,944 KB |
testcase_21 | AC | 41 ms
12,288 KB |
testcase_22 | AC | 46 ms
11,904 KB |
testcase_23 | AC | 44 ms
12,032 KB |
testcase_24 | AC | 45 ms
12,288 KB |
testcase_25 | AC | 72 ms
12,032 KB |
testcase_26 | AC | 77 ms
12,544 KB |
testcase_27 | AC | 673 ms
12,672 KB |
testcase_28 | TLE | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
ソースコード
#include <iostream> #include <vector> #include <set> #define repeat(i,n) for (int i = 0; (i) < (n); ++(i)) typedef long long ll; using namespace std; struct union_find { vector<int> tree; explicit union_find(size_t n) : tree(n, -1) {} bool is_root(int a) { return tree[a] < 0; } int find_root(int a) { return is_root(a) ? a : (tree[a] = find_root(tree[a])); } int tree_size(int a) { return - tree[find_root(a)]; } void union_tree(int a, int b) { a = find_root(a); b = find_root(b); if (a != b) { if (not (tree_size(a) < tree_size(b))) swap(a,b); tree[b] += tree[a]; tree[a] = b; } } bool is_connected(int a, int b) { return find_root(a) == find_root(b); } }; int main() { int h, w; cin >> h >> w; auto ix = [&](int y, int x) { return y*w + x; }; vector<int> a(h * w); repeat (y,h) repeat (x,w) cin >> a[ix(y,x)]; union_find t(h * w); repeat (y,h) repeat (x,w) { if (y+1 < h and a[ix(y,x)] == a[ix(y+1,x)]) t.union_tree(ix(y,x), ix(y+1,x)); if (x+1 < w and a[ix(y,x)] == a[ix(y,x+1)]) t.union_tree(ix(y,x), ix(y,x+1)); } auto root = [&](int y, int x) { return t.find_root(ix(y,x)); }; vector<set<int> > g(h * w); repeat (y,h) repeat (x,w) { if (y+1 < h and a[ix(y,x)] != a[ix(y+1,x)]) { g[root(y,x)].insert(root(y+1,x)); g[root(y+1,x)].insert(root(y,x)); } if (x+1 < w and a[ix(y,x)] != a[ix(y,x+1)]) { g[root(y,x)].insert(root(y,x+1)); g[root(y,x+1)].insert(root(y,x)); } } int q; cin >> q; repeat (query,q) { int y, x, p; cin >> y >> x >> p; -- y; -- x; int i = root(y,x); if (a[i] == p) continue; a[i] = p; for (int j : g[i]) t.union_tree(i,j); int l = t.find_root(i); set<int> s; for (int j : g[i]) { for (int k : g[j]) if (k != i) { g[k].erase(i); g[k].erase(j); g[k].insert(l); s.insert(k); } } g[l] = s; a[l] = p; } repeat (y,h) { repeat (x,w) { if (x) cout << ' '; cout << a[root(y,x)]; } cout << endl; } return 0; }