結果

問題 No.697 池の数はいくつか
ユーザー H3PO4H3PO4
提出日時 2020-12-04 09:17:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
MLE  
実行時間 -
コード長 643 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 438,232 KB
最終ジャッジ日時 2024-11-25 16:39:02
合計ジャッジ時間 58,173 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 AC 33 ms
245,792 KB
testcase_02 MLE -
testcase_03 AC 30 ms
248,212 KB
testcase_04 AC 29 ms
245,260 KB
testcase_05 AC 30 ms
10,880 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 31 ms
10,880 KB
testcase_08 AC 31 ms
10,624 KB
testcase_09 AC 31 ms
10,624 KB
testcase_10 AC 31 ms
10,752 KB
testcase_11 AC 30 ms
10,624 KB
testcase_12 AC 31 ms
10,624 KB
testcase_13 AC 31 ms
10,624 KB
testcase_14 AC 31 ms
10,496 KB
testcase_15 AC 30 ms
10,624 KB
testcase_16 AC 31 ms
10,752 KB
testcase_17 AC 31 ms
10,880 KB
testcase_18 AC 30 ms
10,496 KB
testcase_19 AC 30 ms
10,752 KB
testcase_20 AC 31 ms
10,880 KB
testcase_21 AC 31 ms
10,752 KB
testcase_22 AC 32 ms
10,880 KB
testcase_23 AC 31 ms
10,624 KB
testcase_24 AC 2,588 ms
86,916 KB
testcase_25 AC 2,584 ms
86,920 KB
testcase_26 AC 2,527 ms
86,652 KB
testcase_27 AC 2,615 ms
86,424 KB
testcase_28 AC 2,644 ms
86,664 KB
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
from collections import deque

H, W = map(int, input().split())
A = [tuple(map(int, input().split())) for _ in range(H)]

visited = set()
ans = 0
for h, w in itertools.product(range(H), range(W)):
    if A[h][w] and (h, w) not in visited:
        ans += 1
        # dfs
        d = deque([(h, w)])
        while d:
            h, w = d.pop()
            visited.add((h, w))
            for dh, dw in ((0, 1), (1, 0), (0, -1), (-1, 0)):
                hdh, wdw = h + dh, w + dw
                if 0 <= hdh < H and 0 <= wdw < W and A[hdh][wdw] and (hdh, wdw) not in visited:
                    d.append((hdh, wdw))
print(ans)
0