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