結果

問題 No.2731 Two Colors
ユーザー vwxyzvwxyz
提出日時 2024-08-09 05:17:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,613 ms / 3,000 ms
コード長 955 bytes
コンパイル時間 373 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 135,276 KB
最終ジャッジ日時 2024-08-09 05:17:59
合計ジャッジ時間 18,177 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,573 ms
135,256 KB
testcase_01 AC 1,607 ms
135,276 KB
testcase_02 AC 1,613 ms
134,992 KB
testcase_03 AC 86 ms
76,800 KB
testcase_04 AC 136 ms
79,360 KB
testcase_05 AC 127 ms
78,464 KB
testcase_06 AC 210 ms
83,968 KB
testcase_07 AC 191 ms
83,996 KB
testcase_08 AC 117 ms
77,440 KB
testcase_09 AC 459 ms
104,960 KB
testcase_10 AC 98 ms
77,056 KB
testcase_11 AC 810 ms
113,932 KB
testcase_12 AC 448 ms
104,684 KB
testcase_13 AC 666 ms
107,860 KB
testcase_14 AC 259 ms
89,456 KB
testcase_15 AC 132 ms
77,536 KB
testcase_16 AC 336 ms
90,948 KB
testcase_17 AC 381 ms
95,436 KB
testcase_18 AC 169 ms
79,872 KB
testcase_19 AC 371 ms
91,168 KB
testcase_20 AC 263 ms
93,248 KB
testcase_21 AC 156 ms
79,500 KB
testcase_22 AC 608 ms
109,564 KB
testcase_23 AC 221 ms
84,224 KB
testcase_24 AC 156 ms
79,952 KB
testcase_25 AC 87 ms
76,716 KB
testcase_26 AC 407 ms
101,100 KB
testcase_27 AC 516 ms
107,564 KB
testcase_28 AC 474 ms
98,692 KB
testcase_29 AC 220 ms
82,880 KB
testcase_30 AC 251 ms
86,996 KB
testcase_31 AC 231 ms
84,180 KB
testcase_32 AC 806 ms
119,572 KB
testcase_33 AC 38 ms
52,608 KB
testcase_34 AC 39 ms
52,480 KB
testcase_35 AC 39 ms
52,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

H,W=map(int,input().split())
A=[list(map(int,input().split())) for h in range(H)]
color=[[None]*W for h in range(H)]
queue=[[(A[0][1],0,1),(A[1][0],1,0)],[(A[H-1][W-2],H-1,W-2),(A[H-2][W-1],H-2,W-1)]]
color[0][0]=0
color[H-1][W-1]=1
heapq.heapify(queue[0])
heapq.heapify(queue[1])
seen=[[[False]*W for h in range(H)] for c in range(2)]
seen[0][0][1]=1
seen[0][1][0]=1
seen[1][H-1][W-2]=1
seen[1][H-2][W-1]=1
ans=0
while True:
    c=ans%2
    a,h,w=heapq.heappop(queue[c])
    ans+=1
    color[h][w]=c
    skip=False
    for dh,dw in ((0,1),(1,0),(0,-1),(-1,0)):
        if 0<=h+dh<H and 0<=w+dw<W:
            if color[h+dh][w+dw]==None:
                if seen[c][h+dh][w+dw]:
                    continue
                heapq.heappush(queue[c],(A[h+dh][w+dw],h+dh,w+dw))
                seen[c][h+dh][w+dw]=True
            else:
                if color[h+dh][w+dw]!=c:
                    skip=True
    if skip:
        break
print(ans)
0