結果

問題 No.697 池の数はいくつか
ユーザー H3PO4
提出日時 2022-10-05 13:05:26
言語 PyPy3
(7.3.17)
コンパイル:
pypy3 -mpy_compile _filename_
実行:
pypy3 _filename_
結果
WA  
実行時間 -
コード長 691 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 1,055 ms
コンパイル使用メモリ 85,248 KB
実行使用メモリ 1,304,924 KB
最終ジャッジ日時 2026-06-05 02:07:56
合計ジャッジ時間 12,902 ms
ジャッジサーバーID
(参考情報)
judge3_0 / judge2_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20 WA * 6 MLE * 1 -- * 5
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

from collections import deque

H, W = map(int, input().split())
A = tuple(tuple(map(int, input().split())) for _ in range(H))

directions = ((0, 1), (1, 0), (0, -1), (-1, 0))

visited = set()
ans = 0
for h in range(H):
    for w in 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 directions:
                    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