結果

問題 No.2731 Two Colors
ユーザー rlangevinrlangevin
提出日時 2024-04-19 22:10:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,314 ms / 3,000 ms
コード長 1,763 bytes
コンパイル時間 325 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 138,892 KB
最終ジャッジ日時 2024-10-11 15:29:28
合計ジャッジ時間 25,077 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,196 ms
118,912 KB
testcase_01 AC 1,216 ms
118,784 KB
testcase_02 AC 1,203 ms
118,656 KB
testcase_03 AC 166 ms
77,652 KB
testcase_04 AC 238 ms
79,796 KB
testcase_05 AC 214 ms
78,592 KB
testcase_06 AC 379 ms
85,376 KB
testcase_07 AC 450 ms
88,792 KB
testcase_08 AC 186 ms
78,192 KB
testcase_09 AC 1,298 ms
133,004 KB
testcase_10 AC 159 ms
77,352 KB
testcase_11 AC 1,007 ms
118,880 KB
testcase_12 AC 1,270 ms
131,608 KB
testcase_13 AC 898 ms
110,208 KB
testcase_14 AC 641 ms
99,172 KB
testcase_15 AC 187 ms
78,424 KB
testcase_16 AC 496 ms
91,228 KB
testcase_17 AC 728 ms
102,184 KB
testcase_18 AC 225 ms
79,488 KB
testcase_19 AC 523 ms
92,240 KB
testcase_20 AC 922 ms
113,820 KB
testcase_21 AC 282 ms
81,052 KB
testcase_22 AC 1,300 ms
131,000 KB
testcase_23 AC 416 ms
86,656 KB
testcase_24 AC 274 ms
80,860 KB
testcase_25 AC 172 ms
77,696 KB
testcase_26 AC 1,022 ms
119,716 KB
testcase_27 AC 1,234 ms
131,272 KB
testcase_28 AC 731 ms
104,328 KB
testcase_29 AC 315 ms
83,412 KB
testcase_30 AC 527 ms
93,800 KB
testcase_31 AC 352 ms
84,588 KB
testcase_32 AC 1,314 ms
138,892 KB
testcase_33 AC 43 ms
52,736 KB
testcase_34 AC 43 ms
52,992 KB
testcase_35 AC 43 ms
52,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

M = 1005
def f(c, x, y):
    return y + x * M + c * M * M
def g(v):
    y = v % M
    c, x = divmod(v//M, M)
    return c, x, y

H, W = map(int, input().split())
A = []
for i in range(H):
    A.append(list(map(int, input().split())))
    
from heapq import *
def bfs(sx, sy, H, W):
    dist = [[-1] * W for _ in range(H)]
    dist[sx][sy] = 0
    dx = [1, 0, -1, 0]
    dy = [0, 1, 0, -1]
    HH = [f(0, sx, sy)]
    now = 0
    seen = [[0] * W for _ in range(H)]
    seen[sx][sy] = 1
    while HH:
        _, px, py = g(heappop(HH))
        dist[px][py] = now
        now += 1
        for k in range(4):
            x = px + dx[k]
            y = py + dy[k]
            if x < 0 or x > H - 1 or y < 0 or y > W - 1:
                continue
            if seen[x][y]:
                continue
            seen[x][y] = 1
            heappush(HH, f(A[x][y], x, y))
            
    return dist

d1 = bfs(0, 0, H, W)
d2 = bfs(H - 1, W - 1, H, W)

ans = 10 ** 18
dx = [1, 0, -1, 0]
dy = [0, 1, 0, -1]
for i in range(H):
    for j in range(W):
        now = d1[i][j]
        flag = 0
        for k in range(4):
            x = i + dx[k]
            y = j + dy[k]
            if x < 0 or x > H - 1 or y < 0 or y > W - 1:
                continue
            if d2[x][y] < now:
                flag = 1
                break
        if flag:
            ans = min(ans, 2 * now - 1)
            
        now = d2[i][j]
        flag = 0
        for k in range(4):
            x = i + dx[k]
            y = j + dy[k]
            if x < 0 or x > H - 1 or y < 0 or y > W - 1:
                continue
            if d1[x][y] <= now:
                flag = 1
                break
        if flag:
            ans = min(ans, 2 * now)
            
                  
print(ans)
0