結果

問題 No.697 池の数はいくつか
ユーザー Theta
提出日時 2023-01-27 19:25:32
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 1,674 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,552 KB
実行使用メモリ 437,068 KB
最終ジャッジ日時 2024-06-28 04:47:15
合計ジャッジ時間 21,597 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 26 MLE * 6
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
from itertools import combinations, product


def main():
    H, W = map(int, input().split())
    field_map = tuple(tuple(map(int, input().split())) for _ in range(H))
    searched = [[0]*W for _ in range(H)]

    pond_ctr = 0

    for height_idx, width_idx in product(range(H), range(W)):
        if field_map[height_idx][width_idx] == 0:
            continue
        if searched[height_idx][width_idx] == 1:
            continue

        pond_ctr += 1
        searching = deque(((height_idx, width_idx),))
        searched[height_idx][width_idx] = 1
        while searching:
            current_h_idx, current_w_idx = searching.popleft()
            if field_map[current_h_idx][current_w_idx] == 0:
                continue

            if current_h_idx < H-1 and searched[current_h_idx+1][current_w_idx] == 0:
                searching.append((current_h_idx+1, current_w_idx))
                searched[current_h_idx+1][current_w_idx] = 1

            if current_h_idx > 0 and searched[current_h_idx-1][current_w_idx] == 0:
                searching.append((current_h_idx-1, current_w_idx))
                searched[current_h_idx-1][current_w_idx] = 1

            if current_w_idx < W-1 and searched[current_h_idx][current_w_idx+1] == 0:
                searching.append((current_h_idx, current_w_idx+1))
                searched[current_h_idx][current_w_idx+1] = 1

            if current_w_idx > 0 and searched[current_h_idx][current_w_idx-1] == 0:
                searching.append((current_h_idx, current_w_idx-1))
                searched[current_h_idx][current_w_idx-1] = 1

    print(pond_ctr)


if __name__ == "__main__":
    main()
0