結果

問題 No.697 池の数はいくつか
ユーザー H3PO4H3PO4
提出日時 2021-02-28 00:34:10
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 672 bytes
コンパイル時間 406 ms
コンパイル使用メモリ 82,972 KB
実行使用メモリ 850,088 KB
最終ジャッジ日時 2024-11-25 16:54:44
合計ジャッジ時間 42,568 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
55,244 KB
testcase_01 AC 42 ms
54,512 KB
testcase_02 AC 42 ms
54,444 KB
testcase_03 AC 45 ms
55,244 KB
testcase_04 AC 43 ms
55,380 KB
testcase_05 AC 44 ms
55,396 KB
testcase_06 AC 44 ms
54,560 KB
testcase_07 AC 43 ms
55,396 KB
testcase_08 AC 44 ms
55,560 KB
testcase_09 AC 43 ms
55,008 KB
testcase_10 AC 45 ms
55,236 KB
testcase_11 AC 44 ms
54,316 KB
testcase_12 AC 43 ms
54,268 KB
testcase_13 AC 44 ms
55,248 KB
testcase_14 AC 44 ms
55,188 KB
testcase_15 AC 43 ms
54,492 KB
testcase_16 AC 43 ms
54,456 KB
testcase_17 AC 43 ms
55,620 KB
testcase_18 AC 44 ms
55,732 KB
testcase_19 AC 43 ms
55,312 KB
testcase_20 AC 44 ms
54,796 KB
testcase_21 AC 43 ms
54,236 KB
testcase_22 AC 44 ms
54,948 KB
testcase_23 AC 44 ms
55,316 KB
testcase_24 AC 578 ms
137,624 KB
testcase_25 AC 560 ms
139,292 KB
testcase_26 AC 567 ms
137,748 KB
testcase_27 AC 582 ms
137,844 KB
testcase_28 AC 570 ms
138,628 KB
testcase_29 TLE -
testcase_30 MLE -
testcase_31 TLE -
testcase_32 MLE -
testcase_33 MLE -
testcase_34 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
from array import array
from collections import deque

H, W = map(int, input().split())
A = [array('I', map(int, input().split())) for _ in range(H)]

visited = set()
ans = 0
for h, w in itertools.product(range(H), range(W)):
    if A[h][w] and (h, w) not in visited:
        ans += 1
        # dfs
        d = deque([(h, w)])
        while d:
            h, w = d.pop()
            visited.add((h, w))
            for dh, dw in ((0, 1), (1, 0), (0, -1), (-1, 0)):
                hdh, wdw = h + dh, w + dw
                if 0 <= hdh < H and 0 <= wdw < W and A[hdh][wdw] and (hdh, wdw) not in visited:
                    d.append((hdh, wdw))
print(ans)
0