結果
問題 | No.697 池の数はいくつか |
ユーザー | GrayCoder |
提出日時 | 2018-06-24 13:26:50 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,038 bytes |
コンパイル時間 | 380 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 256,360 KB |
最終ジャッジ日時 | 2024-11-08 07:59:15 |
合計ジャッジ時間 | 13,251 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 73 ms
63,360 KB |
testcase_01 | AC | 74 ms
62,976 KB |
testcase_02 | AC | 70 ms
62,848 KB |
testcase_03 | AC | 75 ms
62,848 KB |
testcase_04 | AC | 76 ms
63,232 KB |
testcase_05 | AC | 75 ms
62,848 KB |
testcase_06 | AC | 75 ms
63,360 KB |
testcase_07 | AC | 70 ms
62,848 KB |
testcase_08 | AC | 75 ms
62,976 KB |
testcase_09 | AC | 73 ms
62,976 KB |
testcase_10 | AC | 74 ms
63,104 KB |
testcase_11 | AC | 74 ms
62,848 KB |
testcase_12 | AC | 74 ms
63,232 KB |
testcase_13 | AC | 72 ms
63,104 KB |
testcase_14 | AC | 73 ms
63,360 KB |
testcase_15 | AC | 71 ms
63,104 KB |
testcase_16 | AC | 70 ms
62,976 KB |
testcase_17 | AC | 70 ms
63,104 KB |
testcase_18 | AC | 71 ms
63,104 KB |
testcase_19 | AC | 71 ms
63,104 KB |
testcase_20 | AC | 71 ms
63,360 KB |
testcase_21 | AC | 71 ms
63,104 KB |
testcase_22 | AC | 71 ms
63,104 KB |
testcase_23 | AC | 72 ms
63,232 KB |
testcase_24 | AC | 391 ms
89,824 KB |
testcase_25 | AC | 386 ms
89,836 KB |
testcase_26 | AC | 379 ms
89,736 KB |
testcase_27 | AC | 384 ms
89,956 KB |
testcase_28 | AC | 375 ms
89,716 KB |
testcase_29 | TLE | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
ソースコード
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 write(str(ponds) + '\n') def bfs(h, w): g = deque([(h, w)]) Flag[h][w] = True apnd, popl = g.append, g.popleft while g: x, y = popl() 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: apnd((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()