結果

問題 No.2731 Two Colors
ユーザー lollipoplollipop
提出日時 2024-04-19 22:53:18
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,218 bytes
コンパイル時間 507 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 138,368 KB
最終ジャッジ日時 2024-10-11 16:50:06
合計ジャッジ時間 30,913 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 AC 117 ms
76,432 KB
testcase_04 AC 171 ms
78,980 KB
testcase_05 AC 180 ms
78,208 KB
testcase_06 AC 319 ms
85,796 KB
testcase_07 AC 239 ms
83,172 KB
testcase_08 AC 148 ms
77,312 KB
testcase_09 AC 607 ms
103,944 KB
testcase_10 AC 122 ms
76,516 KB
testcase_11 AC 1,205 ms
129,028 KB
testcase_12 AC 607 ms
103,308 KB
testcase_13 AC 1,034 ms
119,680 KB
testcase_14 AC 385 ms
89,780 KB
testcase_15 AC 169 ms
78,080 KB
testcase_16 AC 514 ms
95,480 KB
testcase_17 AC 577 ms
98,756 KB
testcase_18 AC 216 ms
80,456 KB
testcase_19 AC 557 ms
97,040 KB
testcase_20 AC 377 ms
92,356 KB
testcase_21 AC 234 ms
80,580 KB
testcase_22 AC 869 ms
114,880 KB
testcase_23 AC 351 ms
87,296 KB
testcase_24 AC 223 ms
80,448 KB
testcase_25 AC 126 ms
76,928 KB
testcase_26 AC 557 ms
102,236 KB
testcase_27 AC 776 ms
111,780 KB
testcase_28 AC 702 ms
106,716 KB
testcase_29 AC 306 ms
85,508 KB
testcase_30 AC 372 ms
88,908 KB
testcase_31 AC 391 ms
88,064 KB
testcase_32 AC 1,162 ms
129,640 KB
testcase_33 AC 41 ms
52,352 KB
testcase_34 AC 41 ms
52,608 KB
testcase_35 AC 42 ms
52,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():  

    dxy = [(1,0), (-1,0), (0,1), (0,-1)]
    from heapq import heapify, heappop, heappush

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

    visited = [[None for _ in range(W)] for _ in range(H)]
    visited[0][0] = 0
    visited[H-1][W-1] = 1

    hq = [[], []]
    heapify(hq[0]); heapify(hq[1])
    for i, xy in enumerate([[0, 0], [H-1, W-1]]):
        x, y = xy
        for dx, dy in dxy:
            _x = x+dx
            _y = y+dy
            if (not 0 <= _x < H) or (not 0 <= _y < W):
                continue
            heappush(hq[i], [A[_x][_y], _x, _y])


    i = 0
    while True:
        ii = i % 2
        a, x, y = heappop(hq[ii])
        if visited[x][y] != None:
            continue
        visited[x][y] = ii

        for dx, dy in dxy:
            _x = x+dx
            _y = y+dy
            if (not 0 <= _x < H) or (not 0 <= _y < W):
                continue
            if visited[_x][_y] == ii:
                continue
            if visited[_x][_y] == (ii+1) % 2:
                print(i+1)
                return 0
            heappush(hq[ii], [A[_x][_y], _x, _y])
        i += 1

if __name__ == '__main__':  
    exit(main())
0