結果

問題 No.2731 Two Colors
ユーザー hiro1729hiro1729
提出日時 2024-04-15 07:05:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,459 ms / 3,000 ms
コード長 676 bytes
コンパイル時間 691 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 127,584 KB
最終ジャッジ日時 2024-10-04 21:28:52
合計ジャッジ時間 18,727 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,459 ms
127,308 KB
testcase_01 AC 1,457 ms
127,568 KB
testcase_02 AC 1,435 ms
127,584 KB
testcase_03 AC 98 ms
76,800 KB
testcase_04 AC 122 ms
79,360 KB
testcase_05 AC 128 ms
78,208 KB
testcase_06 AC 205 ms
84,224 KB
testcase_07 AC 175 ms
84,668 KB
testcase_08 AC 113 ms
77,440 KB
testcase_09 AC 413 ms
108,660 KB
testcase_10 AC 93 ms
76,672 KB
testcase_11 AC 749 ms
114,576 KB
testcase_12 AC 398 ms
108,428 KB
testcase_13 AC 616 ms
108,328 KB
testcase_14 AC 252 ms
90,472 KB
testcase_15 AC 113 ms
77,340 KB
testcase_16 AC 331 ms
90,624 KB
testcase_17 AC 375 ms
96,252 KB
testcase_18 AC 158 ms
79,488 KB
testcase_19 AC 361 ms
92,224 KB
testcase_20 AC 263 ms
95,796 KB
testcase_21 AC 175 ms
79,748 KB
testcase_22 AC 540 ms
111,752 KB
testcase_23 AC 229 ms
84,864 KB
testcase_24 AC 152 ms
79,732 KB
testcase_25 AC 113 ms
76,760 KB
testcase_26 AC 382 ms
104,040 KB
testcase_27 AC 484 ms
111,784 KB
testcase_28 AC 420 ms
99,368 KB
testcase_29 AC 192 ms
83,028 KB
testcase_30 AC 256 ms
89,156 KB
testcase_31 AC 242 ms
84,012 KB
testcase_32 AC 726 ms
123,164 KB
testcase_33 AC 37 ms
52,608 KB
testcase_34 AC 36 ms
52,480 KB
testcase_35 AC 37 ms
52,352 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))
			if B[k % 2][x][y] == 0:
				heappush(q[k % 2], (A[x][y], x, y))
				B[k % 2][x][y] = 1
0