結果
| 問題 | 
                            No.697 池の数はいくつか
                             | 
                    
| ユーザー | 
                             neko_the_shadow
                         | 
                    
| 提出日時 | 2018-06-09 22:33:10 | 
| 言語 | Python3  (3.13.1 + numpy 2.2.1 + scipy 1.14.1)  | 
                    
| 結果 | 
                             
                                MLE
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 636 bytes | 
| コンパイル時間 | 289 ms | 
| コンパイル使用メモリ | 12,416 KB | 
| 実行使用メモリ | 375,424 KB | 
| 最終ジャッジ日時 | 2024-11-25 13:07:15 | 
| 合計ジャッジ時間 | 53,252 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge5 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 1 MLE * 2 | 
| other | AC * 26 TLE * 6 | 
ソースコード
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()
            matrix[i][j] = 0
            for di, dj in diffs:
                ni, nj = i + di, j + dj
                if 0 <= ni < h and 0 <= nj < w and matrix[ni][nj] == 1: stack.append((ni, nj))
    
    print(counter)
            
            
            
        
            
neko_the_shadow