結果

問題 No.697 池の数はいくつか
ユーザー GrayCoderGrayCoder
提出日時 2018-06-24 09:30:26
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 998 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 268,652 KB
最終ジャッジ日時 2024-11-08 07:56:48
合計ジャッジ時間 12,876 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
63,232 KB
testcase_01 AC 63 ms
63,104 KB
testcase_02 AC 65 ms
62,848 KB
testcase_03 AC 63 ms
63,360 KB
testcase_04 AC 63 ms
63,232 KB
testcase_05 AC 63 ms
62,848 KB
testcase_06 AC 63 ms
63,232 KB
testcase_07 AC 65 ms
63,232 KB
testcase_08 AC 64 ms
62,848 KB
testcase_09 AC 63 ms
63,232 KB
testcase_10 AC 64 ms
63,232 KB
testcase_11 AC 63 ms
63,232 KB
testcase_12 AC 63 ms
62,976 KB
testcase_13 AC 63 ms
62,976 KB
testcase_14 AC 63 ms
62,976 KB
testcase_15 AC 64 ms
63,104 KB
testcase_16 AC 63 ms
63,232 KB
testcase_17 AC 63 ms
62,848 KB
testcase_18 AC 64 ms
63,104 KB
testcase_19 AC 64 ms
62,976 KB
testcase_20 AC 65 ms
62,976 KB
testcase_21 AC 65 ms
62,976 KB
testcase_22 AC 64 ms
62,976 KB
testcase_23 AC 64 ms
63,232 KB
testcase_24 AC 359 ms
89,956 KB
testcase_25 AC 347 ms
90,092 KB
testcase_26 AC 342 ms
90,088 KB
testcase_27 AC 343 ms
89,704 KB
testcase_28 AC 349 ms
89,692 KB
testcase_29 TLE -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import re
from collections import deque
from sys import stdin, stdout
input = lambda: stdin.readline().rstrip()
write = stdout.write

def main():
    regex = re.compile(r'1+')
    ponds = 0
    for i in range(H):
        r = 0
        while 1:
            obj = regex.search(A[i], pos=r)
            if obj is None:
                break
            l, r = obj.start(), obj.end()
            if Flag[i][l] is None:
                bfs(i, l)
                ponds += 1
    print(ponds)

def bfs(h, w):
    g = deque([(h, w)])
    Flag[h][w] = True
    while g:
        x, y = g.popleft()
        for i, j in {(1, 0), (-1, 0), (0, 1), (0, -1)}:
            xi, yj = x + i, y + j
            if 0 <= xi < H and 0 <= yj < W:
                if A[xi][yj] == '1' and Flag[xi][yj] is None:
                    g.append((xi, yj))
                    Flag[xi][yj] = True
    return

H, W = map(int, input().split())
A = stdin.read().replace(' ', '').splitlines()
Flag = [[None] * W for _ in [0] * H]
main()
0