結果

問題 No.697 池の数はいくつか
ユーザー H3PO4
提出日時 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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 26 TLE * 2 MLE * 4
権限があれば一括ダウンロードができます

ソースコード

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