結果
問題 | No.307 最近色塗る問題多くない? |
ユーザー | tenten |
提出日時 | 2020-12-23 18:25:43 |
言語 | Java21 (openjdk 21) |
結果 |
MLE
|
実行時間 | - |
コード長 | 3,848 bytes |
コンパイル時間 | 2,430 ms |
コンパイル使用メモリ | 80,084 KB |
実行使用メモリ | 684,080 KB |
最終ジャッジ日時 | 2024-09-21 16:28:55 |
合計ジャッジ時間 | 26,902 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 100 ms
41,052 KB |
testcase_01 | AC | 103 ms
41,416 KB |
testcase_02 | AC | 125 ms
41,564 KB |
testcase_03 | AC | 130 ms
41,432 KB |
testcase_04 | AC | 204 ms
43,788 KB |
testcase_05 | AC | 131 ms
41,484 KB |
testcase_06 | AC | 129 ms
41,524 KB |
testcase_07 | AC | 311 ms
50,588 KB |
testcase_08 | AC | 1,257 ms
165,552 KB |
testcase_09 | AC | 823 ms
103,408 KB |
testcase_10 | AC | 288 ms
48,884 KB |
testcase_11 | AC | 542 ms
66,576 KB |
testcase_12 | AC | 125 ms
41,544 KB |
testcase_13 | AC | 575 ms
47,944 KB |
testcase_14 | AC | 213 ms
46,100 KB |
testcase_15 | AC | 241 ms
49,256 KB |
testcase_16 | AC | 238 ms
50,172 KB |
testcase_17 | AC | 863 ms
115,168 KB |
testcase_18 | MLE | - |
testcase_19 | MLE | - |
testcase_20 | AC | 243 ms
53,396 KB |
testcase_21 | TLE | - |
testcase_22 | MLE | - |
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 java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int h = sc.nextInt(); int w = sc.nextInt(); boolean[][] field = new boolean[h][w]; UnionFindTree uft = new UnionFindTree(h * w); for (int i = 0; i < h; i++) { for (int j = 0; j < w; j++) { field[i][j] = (sc.nextInt() == 1); uft.setColor(i * w + j, field[i][j]); if (j > 0) { if (field[i][j] == field[i][j - 1]) { uft.unite(i * w + j, i * w + j - 1); } } if (i > 0) { if (field[i][j] == field[i - 1][j]) { uft.unite(i * w + j, (i - 1) * w + j); } } } } for (int i = 0; i < h; i++) { for (int j = 0; j < w; j++) { if (j > 0) { uft.addNeighbour(i * w + j, i * w + j - 1); uft.addNeighbour(i * w + j - 1, i * w + j); } if (i > 0) { uft.addNeighbour(i * w + j, (i - 1) * w + j); uft.addNeighbour((i - 1) * w + j, i * w + j); } } } int q = sc.nextInt(); for (int i = 0; i < q; i++) { int r = sc.nextInt() - 1; int c = sc.nextInt() - 1; boolean color = (sc.nextInt() == 1); uft.uniteColor(r * w + c, color); } StringBuilder sb = new StringBuilder(); for (int i = 0; i < h; i++) { for (int j = 0; j < w; j++) { if (j > 0) { sb.append(" "); } if (uft.getColor(i * w + j)) { sb.append("1"); } else { sb.append("0"); } } sb.append("\n"); } System.out.print(sb); } static class UnionFindTree { int[] paretns; ArrayList<HashSet<Integer>> neighbours; boolean[] colors; public UnionFindTree(int size) { paretns = new int[size]; neighbours = new ArrayList<>(); colors = new boolean[size]; for (int i = 0; i < size; i++) { paretns[i] = i; neighbours.add(new HashSet<>()); } } public int find(int x) { if (x == paretns[x]) { return x; } else { return paretns[x] = find(paretns[x]); } } public boolean same(int x, int y) { return find(x) == find(y); } public void addNeighbour(int x, int y) { int xx = find(x); int yy = find(y); if (xx == yy) { return; } neighbours.get(xx).add(yy); } public void unite(int x, int y) { int xx = find(x); int yy = find(y); if (xx == yy) { return; } for (int zz : neighbours.get(xx)) { addNeighbour(yy, zz); } paretns[xx] = yy; } public void setColor(int x, boolean c) { colors[find(x)] = c; } public boolean getColor(int x) { return colors[find(x)]; } public void uniteColor(int x, boolean c) { if (colors[find(x)] == c) { return; } colors[find(x)] = c; for (int y : neighbours.get(find(x))) { unite(x, y); } } } }