結果

問題 No.2731 Two Colors
ユーザー ryohei22ryohei22
提出日時 2024-05-03 21:43:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,658 ms / 3,000 ms
コード長 1,067 bytes
コンパイル時間 514 ms
コンパイル使用メモリ 81,888 KB
実行使用メモリ 264,992 KB
最終ジャッジ日時 2024-05-03 21:44:00
合計ジャッジ時間 26,857 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,619 ms
264,992 KB
testcase_01 AC 2,648 ms
264,676 KB
testcase_02 AC 2,658 ms
264,804 KB
testcase_03 AC 113 ms
76,584 KB
testcase_04 AC 142 ms
78,628 KB
testcase_05 AC 145 ms
78,304 KB
testcase_06 AC 263 ms
87,304 KB
testcase_07 AC 239 ms
84,512 KB
testcase_08 AC 132 ms
78,184 KB
testcase_09 AC 509 ms
110,284 KB
testcase_10 AC 118 ms
76,668 KB
testcase_11 AC 1,048 ms
150,424 KB
testcase_12 AC 528 ms
108,212 KB
testcase_13 AC 870 ms
135,492 KB
testcase_14 AC 342 ms
91,020 KB
testcase_15 AC 124 ms
77,468 KB
testcase_16 AC 432 ms
100,724 KB
testcase_17 AC 478 ms
103,568 KB
testcase_18 AC 210 ms
81,384 KB
testcase_19 AC 473 ms
102,916 KB
testcase_20 AC 316 ms
92,836 KB
testcase_21 AC 200 ms
83,056 KB
testcase_22 AC 741 ms
126,284 KB
testcase_23 AC 270 ms
87,768 KB
testcase_24 AC 193 ms
82,924 KB
testcase_25 AC 135 ms
76,700 KB
testcase_26 AC 497 ms
106,676 KB
testcase_27 AC 643 ms
120,108 KB
testcase_28 AC 600 ms
115,224 KB
testcase_29 AC 253 ms
86,964 KB
testcase_30 AC 305 ms
91,388 KB
testcase_31 AC 309 ms
89,608 KB
testcase_32 AC 1,008 ms
147,120 KB
testcase_33 AC 39 ms
53,304 KB
testcase_34 AC 39 ms
53,348 KB
testcase_35 AC 39 ms
53,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq


H, W = map(int, input().split())
A = [list(map(int, input().split())) for _ in range(H)]

if H == W == 2:
	print(0)
	exit()

visit = [[-1] * W for _ in range(H)]
visit[0][0] = 1
visit[-1][-1] = 0
n = [[(A[H-1][W-2], H-1, W-2), (A[H-2][W-1], H-2, W-1)], [(A[0][1], 0, 1), (A[1][0], 1, 0)]]
s = [set([(H-1, W-2), (H-2, W-1)]), set([(0, 1), (1, 0)])]
heapq.heapify(n[0])
heapq.heapify(n[1])

idx = 1
while 1:
	if not n[idx%2]:
		break
	mi = heapq.heappop(n[idx%2])
	while visit[mi[1]][mi[2]] != -1 and n[idx%2]:
		mi = heapq.heappop(n[idx%2])
	if visit[mi[1]][mi[2]] != -1:
		break

	visit[mi[1]][mi[2]] = idx % 2
	fin = False
	for i, j in [(0, 1), (0, -1), (1, 0), (-1, 0)]:
		if 0 <= mi[1] + i < H and 0 <= mi[2] + j < W and visit[mi[1]+i][mi[2]+j] == (idx+1) % 2:
			fin = True
			break
		if 0 <= mi[1] + i < H and 0 <= mi[2] + j < W and visit[mi[1]+i][mi[2]+j] == -1 and (mi[1]+i, mi[2]+j) not in s[idx%2]:
			heapq.heappush(n[idx%2], (A[mi[1]+i][mi[2]+j], mi[1]+i, mi[2]+j))
			s[idx%2].add((mi[1]+i, mi[2]+j))
	if fin:
		break

	idx += 1
print(idx)
0