結果

問題 No.697 池の数はいくつか
ユーザー neko_the_shadow
提出日時 2018-06-09 22:16:30
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
MLE  
実行時間 -
コード長 603 bytes
コンパイル時間 436 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 818,008 KB
最終ジャッジ日時 2024-11-25 13:03:33
合計ジャッジ時間 55,457 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 MLE * 1
other AC * 26 TLE * 6
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools

if __name__ == '__main__':
    h, w = map(int, input().split())
    matrix = [list(map(int, input().split())) for _ in range(h)]
    
    diffs = ((1, 0), (-1, 0), (0, 1), (0, -1))
    counter = 0
    for x, y in itertools.product(range(h), range(w)):
        if matrix[x][y] == 0: continue
        
        counter += 1
        stack = [(x, y)]
        while stack:
            i, j = stack.pop()
            if 0 <= i < h and 0 <= j < w and matrix[i][j] == 1:
                matrix[i][j] = 0
                stack.extend((i + di, j + dj) for di, dj in diffs)
    
    print(counter)
0