結果

問題 No.697 池の数はいくつか
ユーザー dice4084dice4084
提出日時 2022-12-27 22:42:18
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 800 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 81,988 KB
実行使用メモリ 506,608 KB
最終ジャッジ日時 2024-05-02 00:56:09
合計ジャッジ時間 15,177 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
55,628 KB
testcase_01 AC 37 ms
56,104 KB
testcase_02 AC 36 ms
54,660 KB
testcase_03 AC 37 ms
54,252 KB
testcase_04 AC 38 ms
55,544 KB
testcase_05 AC 38 ms
54,336 KB
testcase_06 AC 37 ms
54,612 KB
testcase_07 AC 38 ms
55,176 KB
testcase_08 AC 36 ms
54,096 KB
testcase_09 AC 38 ms
55,192 KB
testcase_10 AC 37 ms
55,804 KB
testcase_11 AC 37 ms
54,136 KB
testcase_12 AC 37 ms
54,908 KB
testcase_13 AC 36 ms
54,000 KB
testcase_14 AC 37 ms
55,064 KB
testcase_15 AC 38 ms
54,132 KB
testcase_16 AC 37 ms
54,588 KB
testcase_17 AC 37 ms
53,820 KB
testcase_18 AC 35 ms
53,928 KB
testcase_19 AC 36 ms
55,424 KB
testcase_20 AC 37 ms
55,156 KB
testcase_21 AC 38 ms
55,160 KB
testcase_22 AC 36 ms
54,528 KB
testcase_23 AC 38 ms
55,184 KB
testcase_24 AC 3,735 ms
289,152 KB
testcase_25 MLE -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import deque
from itertools import product

h, w = map(int, input().split())
a = [[0]*(w+2)] + [[0] + list(map(int, input().split())) + [0] for _ in range(h)] + [[0]*(w+2)]
arrived = [[False]*(w+2) for _ in range(h+2)]

dyx = ((1, 0), (-1, 0), (0, 1), (0, -1))
ans = 0
for i, j in product(range(1, h+1), range(1, w+1)):
    if a[i][j] == 0:
        continue
    if arrived[i][j]:
        continue

    ans += 1
    q = deque([(i, j)])
    while q:
        y, x = q.popleft()
        arrived[y][x] = True
        for dy, dx in dyx:
            new_y, new_x = (y+dy, x+dx)
            if a[new_y][new_x] == 0:
                continue
            if arrived[new_y][new_x]:
                continue
            q.append((new_y, new_x))

print(ans)
0