結果
問題 | No.697 池の数はいくつか |
ユーザー | nebukuro09 |
提出日時 | 2018-06-11 11:25:15 |
言語 | D (dmd 2.106.1) |
結果 |
AC
|
実行時間 | 1,490 ms / 6,000 ms |
コード長 | 1,459 bytes |
コンパイル時間 | 1,013 ms |
コンパイル使用メモリ | 118,656 KB |
実行使用メモリ | 166,016 KB |
最終ジャッジ日時 | 2024-06-13 01:12:35 |
合計ジャッジ時間 | 13,189 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | AC | 1 ms
5,376 KB |
testcase_14 | AC | 1 ms
5,376 KB |
testcase_15 | AC | 1 ms
5,376 KB |
testcase_16 | AC | 1 ms
5,376 KB |
testcase_17 | AC | 1 ms
5,376 KB |
testcase_18 | AC | 1 ms
5,376 KB |
testcase_19 | AC | 1 ms
5,376 KB |
testcase_20 | AC | 1 ms
5,376 KB |
testcase_21 | AC | 1 ms
5,376 KB |
testcase_22 | AC | 1 ms
5,376 KB |
testcase_23 | AC | 1 ms
5,376 KB |
testcase_24 | AC | 140 ms
18,304 KB |
testcase_25 | AC | 127 ms
18,304 KB |
testcase_26 | AC | 130 ms
18,304 KB |
testcase_27 | AC | 124 ms
18,176 KB |
testcase_28 | AC | 135 ms
18,176 KB |
testcase_29 | AC | 1,479 ms
165,988 KB |
testcase_30 | AC | 1,175 ms
165,940 KB |
testcase_31 | AC | 1,490 ms
165,960 KB |
testcase_32 | AC | 1,192 ms
166,016 KB |
testcase_33 | AC | 1,189 ms
165,996 KB |
testcase_34 | AC | 1,197 ms
165,948 KB |
ソースコード
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, std.bitmanip; void main() { auto s = readln.split.map!(to!int); auto H = s[0]; auto W = s[1]; auto A = H.iota.map!(_ => readln.split.map!(to!int).array).array; const int[] dr = [0, 0, -1, 1]; const int[] dc = [-1, 1, 0, 0]; auto uf = new UnionFind(H*W); auto used = new bool[](H*W); int ans = 0; foreach (i; 0..H) foreach (j; 0..W) foreach (k; 0..4) if (i+dr[k] >= 0 && i+dr[k] < H) if (j+dc[k] >= 0 && j + dc[k] < W) if (A[i][j] == 1 && A[i+dr[k]][j+dc[k]] == 1) uf.unite(i*W+j, (i+dr[k])*W+j+dc[k]); foreach (i; 0..H) foreach (j; 0..W) if (A[i][j] == 1 && !used[uf.find(i*W+j)]) ans += 1, used[uf.find(i*W+j)] = true; ans.writeln; } class UnionFind { int N; int[] table; this(int n) { N = n; table = new int[](N); fill(table, -1); } int find(int x) { return table[x] < 0 ? x : (table[x] = find(table[x])); } void unite(int x, int y) { 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; } }