結果

問題 No.2731 Two Colors
ユーザー hiro1729hiro1729
提出日時 2024-04-14 12:49:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,654 ms / 3,000 ms
コード長 785 bytes
コンパイル時間 324 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 129,028 KB
最終ジャッジ日時 2024-10-03 13:32:16
合計ジャッジ時間 18,876 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,654 ms
129,028 KB
testcase_01 AC 1,654 ms
128,888 KB
testcase_02 AC 1,645 ms
128,732 KB
testcase_03 AC 101 ms
77,032 KB
testcase_04 AC 131 ms
79,068 KB
testcase_05 AC 130 ms
78,128 KB
testcase_06 AC 234 ms
84,248 KB
testcase_07 AC 194 ms
84,480 KB
testcase_08 AC 113 ms
77,300 KB
testcase_09 AC 448 ms
109,056 KB
testcase_10 AC 106 ms
76,820 KB
testcase_11 AC 846 ms
114,896 KB
testcase_12 AC 446 ms
108,960 KB
testcase_13 AC 701 ms
108,400 KB
testcase_14 AC 283 ms
90,452 KB
testcase_15 AC 120 ms
77,784 KB
testcase_16 AC 370 ms
90,564 KB
testcase_17 AC 404 ms
96,312 KB
testcase_18 AC 155 ms
79,452 KB
testcase_19 AC 396 ms
91,812 KB
testcase_20 AC 284 ms
97,436 KB
testcase_21 AC 178 ms
80,328 KB
testcase_22 AC 602 ms
112,516 KB
testcase_23 AC 239 ms
84,524 KB
testcase_24 AC 171 ms
80,580 KB
testcase_25 AC 110 ms
76,516 KB
testcase_26 AC 420 ms
103,700 KB
testcase_27 AC 536 ms
111,272 KB
testcase_28 AC 488 ms
99,792 KB
testcase_29 AC 223 ms
83,428 KB
testcase_30 AC 277 ms
88,924 KB
testcase_31 AC 264 ms
84,700 KB
testcase_32 AC 822 ms
123,440 KB
testcase_33 AC 40 ms
53,888 KB
testcase_34 AC 40 ms
53,228 KB
testcase_35 AC 39 ms
52,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *
H, W = map(int, input().split())
A = [list(map(int, input().split())) for _ in range(H)]
q = [[], []]
C = [[[-1] * W for _ in range(H)] for _ in range(2)]
B = [[[0] * W for _ in range(H)] for _ in range(2)]
heappush(q[1], (A[0][0], 0, 0))
heappush(q[0], (A[H - 1][W - 1], H - 1, W - 1))
B[1][0][0] = 1
B[0][H - 1][W - 1] = 1
for k in range(1, H * W + 1):
	_, i, j = heappop(q[k % 2])
	C[k % 2][i][j] = 0
	for dx, dy in [(-1, 0), (0, -1), (1, 0), (0, 1)]:
		x = i + dx
		y = j + dy
		if 0 <= x < H and 0 <= y < W:
			if C[1 - k % 2][x][y] == 0:
				exit(print(k - 2))
	for dx, dy in [(-1, 0), (0, -1), (1, 0), (0, 1)]:
		x = i + dx
		y = j + dy
		if 0 <= x < H and 0 <= y < W:
			if B[k % 2][x][y] == 0:
				heappush(q[k % 2], (A[x][y], x, y))
				B[k % 2][x][y] = 1
0