結果

問題 No.697 池の数はいくつか
ユーザー 双六双六
提出日時 2020-08-26 15:19:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,282 ms / 6,000 ms
コード長 913 bytes
コンパイル時間 352 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 254,848 KB
最終ジャッジ日時 2024-11-08 08:43:05
合計ジャッジ時間 12,302 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
53,888 KB
testcase_01 AC 47 ms
53,504 KB
testcase_02 AC 47 ms
53,888 KB
testcase_03 AC 46 ms
53,888 KB
testcase_04 AC 47 ms
53,760 KB
testcase_05 AC 46 ms
53,760 KB
testcase_06 AC 45 ms
54,144 KB
testcase_07 AC 47 ms
53,888 KB
testcase_08 AC 48 ms
53,504 KB
testcase_09 AC 44 ms
53,760 KB
testcase_10 AC 46 ms
53,632 KB
testcase_11 AC 48 ms
53,888 KB
testcase_12 AC 46 ms
53,760 KB
testcase_13 AC 45 ms
53,888 KB
testcase_14 AC 45 ms
53,632 KB
testcase_15 AC 47 ms
53,504 KB
testcase_16 AC 48 ms
53,632 KB
testcase_17 AC 48 ms
53,760 KB
testcase_18 AC 48 ms
53,888 KB
testcase_19 AC 48 ms
54,144 KB
testcase_20 AC 47 ms
53,760 KB
testcase_21 AC 45 ms
54,016 KB
testcase_22 AC 45 ms
53,632 KB
testcase_23 AC 49 ms
53,888 KB
testcase_24 AC 281 ms
87,220 KB
testcase_25 AC 273 ms
87,300 KB
testcase_26 AC 275 ms
87,248 KB
testcase_27 AC 283 ms
87,392 KB
testcase_28 AC 296 ms
88,116 KB
testcase_29 AC 1,196 ms
254,592 KB
testcase_30 AC 1,165 ms
172,420 KB
testcase_31 AC 1,239 ms
254,848 KB
testcase_32 AC 1,280 ms
172,748 KB
testcase_33 AC 1,282 ms
172,868 KB
testcase_34 AC 1,157 ms
172,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# import sys; input = sys.stdin.buffer.readline
# sys.setrecursionlimit(10**7)
# from collections import defaultdict
from collections import deque

def getlist():
	return list(map(int, input().split()))

def BFS(H, W, L, start):
	h, w = start
	Q = deque(); Q.append([h, w])
	while Q:
		y, x = Q.popleft()
		if L[y - 1][x] == 1:
			L[y - 1][x] = 2
			Q.append([y - 1, x])
		if L[y + 1][x] == 1:
			L[y + 1][x] = 2
			Q.append([y + 1, x])
		if L[y][x - 1] == 1:
			L[y][x - 1] = 2
			Q.append([y, x - 1])
		if L[y][x + 1] == 1:
			L[y][x + 1] = 2
			Q.append([y, x + 1])

#処理内容
def main():
	H, W = getlist()
	L = []
	L.append([0] * (W + 2))
	for i in range(H):
		l = getlist()
		L.append([0] + l + [0])
	L.append([0] * (W + 2))

	cnt = 0
	for i in range(1, H + 1):
		for j in range(1, W + 1):
			if L[i][j] == 1:
				cnt += 1
				BFS(H + 2, W + 2, L, [i, j])

	print(cnt)

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