結果

問題 No.2731 Two Colors
ユーザー nikoro256nikoro256
提出日時 2024-04-19 22:08:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,707 ms / 3,000 ms
コード長 831 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 119,324 KB
最終ジャッジ日時 2024-10-11 15:25:24
合計ジャッジ時間 19,869 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,622 ms
119,324 KB
testcase_01 AC 1,707 ms
119,276 KB
testcase_02 AC 1,705 ms
119,076 KB
testcase_03 AC 115 ms
76,800 KB
testcase_04 AC 138 ms
78,828 KB
testcase_05 AC 141 ms
77,888 KB
testcase_06 AC 244 ms
83,456 KB
testcase_07 AC 201 ms
83,548 KB
testcase_08 AC 129 ms
78,168 KB
testcase_09 AC 470 ms
104,040 KB
testcase_10 AC 113 ms
76,748 KB
testcase_11 AC 873 ms
110,808 KB
testcase_12 AC 460 ms
104,084 KB
testcase_13 AC 726 ms
105,472 KB
testcase_14 AC 289 ms
88,448 KB
testcase_15 AC 125 ms
77,428 KB
testcase_16 AC 391 ms
89,664 KB
testcase_17 AC 424 ms
93,188 KB
testcase_18 AC 174 ms
78,880 KB
testcase_19 AC 425 ms
89,888 KB
testcase_20 AC 306 ms
92,856 KB
testcase_21 AC 188 ms
79,516 KB
testcase_22 AC 638 ms
108,388 KB
testcase_23 AC 252 ms
83,892 KB
testcase_24 AC 181 ms
79,600 KB
testcase_25 AC 110 ms
76,820 KB
testcase_26 AC 450 ms
100,488 KB
testcase_27 AC 569 ms
106,880 KB
testcase_28 AC 519 ms
97,508 KB
testcase_29 AC 239 ms
81,928 KB
testcase_30 AC 286 ms
86,408 KB
testcase_31 AC 276 ms
83,604 KB
testcase_32 AC 885 ms
117,808 KB
testcase_33 AC 38 ms
52,352 KB
testcase_34 AC 39 ms
52,608 KB
testcase_35 AC 39 ms
52,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
H,W=map(int,input().split())
A=[]
for _ in range(H):
    A.append(list(map(int,input().split())))
hq=[[] for _ in range(2)]
heapq.heappush(hq[0],(A[0][0],0,0))
heapq.heappush(hq[1],(A[-1][-1],H-1,W-1))
use=[[-1]*W for _ in range(H)]
d=[[1,0],[-1,0],[0,1],[0,-1]]
flag=[[[False]*W for _ in range(H)] for _ in range(2)]
count=0
while True:
    p,x,y=heapq.heappop(hq[count%2])
    if use[x][y]!=-1:
        continue
    use[x][y]=count%2
    for x_d,y_d in d:
        x_m=x+x_d
        y_m=y+y_d
        if 0<=x_m<H and 0<=y_m<W :
            if use[x_m][y_m]==1-count%2:
                print(count-1)
                exit(0)
            elif use[x_m][y_m]==-1 and (not flag[count%2][x_m][y_m]):
                heapq.heappush(hq[count%2],(A[x_m][y_m],x_m,y_m))
                flag[count%2][x_m][y_m]=True
    count+=1
0