結果

問題 No.697 池の数はいくつか
ユーザー LyricalMaestroLyricalMaestro
提出日時 2024-12-05 23:50:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,601 ms / 6,000 ms
コード長 1,200 bytes
コンパイル時間 387 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 288,264 KB
最終ジャッジ日時 2024-12-05 23:50:48
合計ジャッジ時間 18,887 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
53,248 KB
testcase_01 AC 46 ms
53,632 KB
testcase_02 AC 45 ms
53,248 KB
testcase_03 AC 45 ms
53,632 KB
testcase_04 AC 45 ms
53,888 KB
testcase_05 AC 43 ms
53,504 KB
testcase_06 AC 43 ms
53,632 KB
testcase_07 AC 43 ms
53,632 KB
testcase_08 AC 42 ms
53,504 KB
testcase_09 AC 41 ms
53,504 KB
testcase_10 AC 41 ms
53,760 KB
testcase_11 AC 42 ms
53,504 KB
testcase_12 AC 43 ms
53,504 KB
testcase_13 AC 49 ms
53,888 KB
testcase_14 AC 45 ms
53,376 KB
testcase_15 AC 45 ms
53,248 KB
testcase_16 AC 44 ms
53,504 KB
testcase_17 AC 46 ms
53,760 KB
testcase_18 AC 43 ms
53,376 KB
testcase_19 AC 43 ms
53,760 KB
testcase_20 AC 43 ms
53,888 KB
testcase_21 AC 43 ms
53,632 KB
testcase_22 AC 42 ms
53,376 KB
testcase_23 AC 42 ms
54,016 KB
testcase_24 AC 276 ms
96,768 KB
testcase_25 AC 276 ms
97,408 KB
testcase_26 AC 307 ms
96,896 KB
testcase_27 AC 274 ms
96,768 KB
testcase_28 AC 275 ms
96,768 KB
testcase_29 AC 2,601 ms
288,264 KB
testcase_30 AC 1,785 ms
262,784 KB
testcase_31 AC 2,592 ms
284,016 KB
testcase_32 AC 1,772 ms
262,912 KB
testcase_33 AC 1,773 ms
262,656 KB
testcase_34 AC 1,705 ms
262,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

## https://yukicoder.me/problems/no/697

from collections import deque

DIRECTIONS = [(-1, 0), (1, 0), (0, 1), (0, -1)]

def main():
    H, W = map(int, input().split())
    A = []
    for _ in range(H):
        A.append(list(map(int, input().split())))

    
    composite_id_cell = [[-1] * W for _ in range(H)]
    composite_id = 0
    queue = deque()
    for s_h in range(H):
        for s_w in range(W):
            if A[s_h][s_w] == 1 and composite_id_cell[s_h][s_w] == -1:
                composite_id_cell[s_h][s_w] = composite_id
                queue.append((s_h, s_w))
                while len(queue) > 0:
                    h, w = queue.popleft()
                    for dh, dw in DIRECTIONS:
                        new_h = dh + h
                        new_w = dw + w
                        if 0 <= new_h < H and 0 <= new_w < W:
                            if A[new_h][new_w] == 1 and composite_id_cell[new_h][new_w] == -1:
                                composite_id_cell[new_h][new_w] = composite_id
                                queue.append((new_h, new_w))
                composite_id += 1

    print(composite_id)


                




if __name__ == "__main__":
    main()
0