結果

問題 No.697 池の数はいくつか
ユーザー 67oYG9nh2YMmIci67oYG9nh2YMmIci
提出日時 2021-06-12 16:52:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 828 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 168,832 KB
最終ジャッジ日時 2024-11-25 17:02:49
合計ジャッジ時間 51,326 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
17,828 KB
testcase_01 AC 31 ms
168,448 KB
testcase_02 AC 30 ms
168,576 KB
testcase_03 AC 31 ms
168,576 KB
testcase_04 AC 31 ms
168,832 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 31 ms
10,624 KB
testcase_08 AC 31 ms
10,752 KB
testcase_09 AC 30 ms
10,624 KB
testcase_10 AC 30 ms
10,624 KB
testcase_11 AC 30 ms
10,624 KB
testcase_12 AC 30 ms
10,624 KB
testcase_13 AC 31 ms
10,880 KB
testcase_14 AC 29 ms
10,752 KB
testcase_15 AC 30 ms
10,624 KB
testcase_16 AC 30 ms
10,752 KB
testcase_17 AC 31 ms
10,624 KB
testcase_18 AC 31 ms
10,752 KB
testcase_19 AC 30 ms
10,624 KB
testcase_20 AC 31 ms
10,752 KB
testcase_21 AC 31 ms
10,624 KB
testcase_22 AC 32 ms
10,624 KB
testcase_23 AC 30 ms
10,624 KB
testcase_24 AC 1,258 ms
27,264 KB
testcase_25 AC 1,251 ms
27,392 KB
testcase_26 AC 1,255 ms
27,264 KB
testcase_27 AC 1,249 ms
27,264 KB
testcase_28 AC 1,238 ms
27,520 KB
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

H, W = map(int, input().split())
pond = []

for i in range(H):
    a = [int(i) for i in input().split()]
    pond.append(a)

ans = 0
q = deque()
toward = [[0, 1], [0, -1], [1, 0], [-1, 0]]
visited = [([False] * W) for i in range(H)]


def search():
    while len(q) > 0:
        x, y = q.popleft()
        visited[x][y] = True
        for k in range(4):
            dx, dy = x + toward[k][0], y + toward[k][1]
            if (0 <= dx < H) and (0 <= dy < W):
                if (pond[dx][dy] == 1) and (visited[dx][dy] == False):
                    visited[dx][dy] = True
                    q.append([dx, dy])


for i in range(H):
    for j in range(W):
        if (pond[i][j] == 1) and (visited[i][j] == False):
            q.append([i, j])
            search()
            ans += 1

print(ans)
0