結果

問題 No.2731 Two Colors
ユーザー ryohei22ryohei22
提出日時 2024-05-03 21:43:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,245 ms / 3,000 ms
コード長 1,067 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 81,964 KB
実行使用メモリ 265,136 KB
最終ジャッジ日時 2024-11-25 02:26:42
合計ジャッジ時間 23,536 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,242 ms
264,892 KB
testcase_01 AC 2,245 ms
264,880 KB
testcase_02 AC 2,215 ms
265,136 KB
testcase_03 AC 99 ms
76,908 KB
testcase_04 AC 123 ms
78,940 KB
testcase_05 AC 129 ms
78,724 KB
testcase_06 AC 222 ms
87,372 KB
testcase_07 AC 186 ms
85,008 KB
testcase_08 AC 116 ms
78,052 KB
testcase_09 AC 443 ms
110,152 KB
testcase_10 AC 106 ms
76,896 KB
testcase_11 AC 897 ms
151,072 KB
testcase_12 AC 432 ms
108,716 KB
testcase_13 AC 750 ms
135,624 KB
testcase_14 AC 277 ms
91,164 KB
testcase_15 AC 110 ms
77,468 KB
testcase_16 AC 378 ms
100,944 KB
testcase_17 AC 409 ms
103,568 KB
testcase_18 AC 158 ms
81,892 KB
testcase_19 AC 406 ms
102,904 KB
testcase_20 AC 277 ms
93,088 KB
testcase_21 AC 177 ms
82,900 KB
testcase_22 AC 617 ms
126,416 KB
testcase_23 AC 242 ms
88,140 KB
testcase_24 AC 163 ms
82,824 KB
testcase_25 AC 93 ms
77,104 KB
testcase_26 AC 451 ms
106,688 KB
testcase_27 AC 551 ms
120,400 KB
testcase_28 AC 518 ms
115,340 KB
testcase_29 AC 229 ms
87,424 KB
testcase_30 AC 279 ms
91,392 KB
testcase_31 AC 276 ms
89,864 KB
testcase_32 AC 866 ms
147,384 KB
testcase_33 AC 35 ms
52,896 KB
testcase_34 AC 36 ms
52,620 KB
testcase_35 AC 36 ms
54,176 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