結果
問題 | No.307 最近色塗る問題多くない? |
ユーザー | nebukuro09 |
提出日時 | 2017-05-16 13:57:10 |
言語 | D (dmd 2.106.1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 3,038 bytes |
コンパイル時間 | 663 ms |
コンパイル使用メモリ | 122,088 KB |
実行使用メモリ | 20,668 KB |
最終ジャッジ日時 | 2024-06-12 19:16:48 |
合計ジャッジ時間 | 12,430 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
13,880 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | AC | 9 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 95 ms
10,536 KB |
testcase_08 | AC | 2,442 ms
14,724 KB |
testcase_09 | AC | 921 ms
14,564 KB |
testcase_10 | AC | 88 ms
6,940 KB |
testcase_11 | AC | 477 ms
13,772 KB |
testcase_12 | AC | 1 ms
6,940 KB |
testcase_13 | AC | 30 ms
8,388 KB |
testcase_14 | AC | 31 ms
6,944 KB |
testcase_15 | AC | 69 ms
6,944 KB |
testcase_16 | AC | 57 ms
6,940 KB |
testcase_17 | AC | 1,607 ms
11,960 KB |
testcase_18 | TLE | - |
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 | -- | - |
ソースコード
import std.stdio, std.array, std.string, std.conv, std.algorithm; import std.typecons, std.range, std.random, std.math, std.container; import std.numeric, std.bigint, core.bitop; void main() { auto s = readln.split.map!(to!int).array; auto H = s[0]; auto W = s[1]; auto A = H.iota.map!(_ => readln.split.map!(to!int).array).array; auto Q = readln.chomp.to!int; auto RCX = Q.iota.map!(_ => readln.split.map!(to!int).array).array; auto uf = new UnionFind(H*W); foreach (i; 0..H) foreach (j; 0..W) uf.color[i*W+j] = A[i][j]; auto used = new bool[][](H, W); int[4] dr = [0, 0, -1, 1]; int[4] dc = [-1, 1, 0, 0]; void dfs(int r, int c, int p) { if (used[r][c]) return; used[r][c] = true; uf.unite(p, r*W+c, A[r][c]); foreach (i; 0..4) { int nr = r + dr[i]; int nc = c + dc[i]; if (nr < 0 || nr >= H || nc < 0 || nc >= W) continue; if (used[nr][nc]) continue; if (A[nr][nc] != A[r][c]) continue; dfs(nr, nc, p); } } foreach (i; 0..H) foreach (j; 0..W) if (!used[i][j]) dfs(i, j, i*W+j); bool cancel = false; foreach (q; 0..Q) { RCX[q][0]--, RCX[q][1]--; auto n = uf.find(RCX[q][0] * W + RCX[q][1]); auto x = RCX[q][2]; if (uf.color[n] == x) continue; if (uf.table[n] == -H*W) { cancel = true; break; } int[] to_unite; foreach (m; uf.members[n]) { int i = m / W; int j = m % W; foreach (k; 0..4) { int ni = i + dr[k]; int nj = j + dc[k]; if (ni < 0 || ni >= H || nj < 0 || nj >= W) continue; if (uf.find(m) == uf.find(ni*W+nj)) continue; to_unite ~= (ni * W + nj); } } foreach (tu; to_unite) uf.unite(n, tu, x); } if (cancel) uf.color[uf.find(0)] = RCX[$-1][2]; auto ans = new int[][](H, W); foreach (n; 0..H*W) { if (uf.table[n] >= 0) continue; foreach (m; uf.members[n]) { int r = m / W; int c = m % W; ans[r][c] = uf.color[n]; } } ans.each!(an => an.map!(a => a.to!string).join(" ").writeln); } class UnionFind { int N; int[] table; int[] color; int[][] members; this(int n) { N = n; table = new int[](N); color = new int[](N); members = new int[][](N); fill(table, -1); foreach (i; 0..n) members[i] = [i]; } int find(int x) { return table[x] < 0 ? x : (table[x] = find(table[x])); } void unite(int x, int y, int c) { x = find(x); y = find(y); if (x == y) return; if (table[x] < table[y]) swap(x, y); table[x] += table[y]; table[y] = x; foreach (m; members[y]) members[x] ~= m; color[x] = c; members[y] = []; } }