結果

問題 No.697 池の数はいくつか
ユーザー H3PO4H3PO4
提出日時 2022-10-05 13:24:05
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 808 bytes
コンパイル時間 335 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 315,756 KB
最終ジャッジ日時 2024-06-10 04:14:37
合計ジャッジ時間 15,370 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
55,004 KB
testcase_01 AC 40 ms
55,576 KB
testcase_02 AC 41 ms
54,368 KB
testcase_03 AC 40 ms
55,436 KB
testcase_04 AC 41 ms
55,464 KB
testcase_05 AC 40 ms
54,924 KB
testcase_06 AC 42 ms
54,388 KB
testcase_07 AC 44 ms
54,852 KB
testcase_08 AC 41 ms
56,308 KB
testcase_09 AC 41 ms
54,092 KB
testcase_10 AC 42 ms
54,824 KB
testcase_11 AC 40 ms
55,348 KB
testcase_12 AC 42 ms
55,252 KB
testcase_13 AC 40 ms
54,992 KB
testcase_14 AC 41 ms
55,020 KB
testcase_15 AC 41 ms
54,948 KB
testcase_16 AC 40 ms
54,056 KB
testcase_17 AC 41 ms
54,236 KB
testcase_18 AC 41 ms
54,512 KB
testcase_19 AC 44 ms
55,252 KB
testcase_20 AC 41 ms
54,600 KB
testcase_21 AC 40 ms
54,124 KB
testcase_22 AC 41 ms
54,516 KB
testcase_23 AC 41 ms
56,436 KB
testcase_24 AC 235 ms
87,492 KB
testcase_25 AC 234 ms
87,156 KB
testcase_26 AC 233 ms
86,824 KB
testcase_27 AC 233 ms
86,940 KB
testcase_28 AC 231 ms
87,076 KB
testcase_29 MLE -
testcase_30 AC 1,260 ms
172,872 KB
testcase_31 MLE -
testcase_32 AC 1,333 ms
172,760 KB
testcase_33 AC 1,339 ms
172,592 KB
testcase_34 AC 1,346 ms
172,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from array import array
from collections import deque

H, W = map(int, input().split())
A = tuple(array('b', map(int, input().split())) for _ in range(H))
pair2int = lambda h, w: h * W + w
int2pair = lambda i: (i // W, i % W)
nonvisited = array('b', [1] * (H * W))
directions = ((0, 1), (1, 0), (0, -1), (-1, 0))
ans = 0
d = deque()
for i in range(H * W):
    h, w = int2pair(i)
    if A[h][w] and nonvisited[i]:
        ans += 1
        # dfs
        d.append(i)
        while d:
            x = d.pop()
            h, w = int2pair(x)
            nonvisited[x] = 0
            for dh, dw in directions:
                hdh, wdw = h + dh, w + dw
                if 0 <= hdh < H and 0 <= wdw < W and A[hdh][wdw] and nonvisited[pair2int(hdh, wdw)]:
                    d.append(pair2int(hdh, wdw))

print(ans)
0