結果

問題 No.2731 Two Colors
ユーザー titiatitia
提出日時 2024-04-19 22:13:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,634 ms / 3,000 ms
コード長 1,396 bytes
コンパイル時間 654 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 129,064 KB
最終ジャッジ日時 2024-10-11 15:35:04
合計ジャッジ時間 19,674 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,601 ms
128,936 KB
testcase_01 AC 1,607 ms
129,064 KB
testcase_02 AC 1,634 ms
129,044 KB
testcase_03 AC 132 ms
78,000 KB
testcase_04 AC 169 ms
79,728 KB
testcase_05 AC 172 ms
78,780 KB
testcase_06 AC 263 ms
83,940 KB
testcase_07 AC 231 ms
85,336 KB
testcase_08 AC 152 ms
78,336 KB
testcase_09 AC 465 ms
109,448 KB
testcase_10 AC 142 ms
77,188 KB
testcase_11 AC 833 ms
114,736 KB
testcase_12 AC 453 ms
109,392 KB
testcase_13 AC 715 ms
108,828 KB
testcase_14 AC 312 ms
91,596 KB
testcase_15 AC 169 ms
77,824 KB
testcase_16 AC 387 ms
91,524 KB
testcase_17 AC 422 ms
96,844 KB
testcase_18 AC 197 ms
79,908 KB
testcase_19 AC 422 ms
91,956 KB
testcase_20 AC 309 ms
96,972 KB
testcase_21 AC 209 ms
80,480 KB
testcase_22 AC 626 ms
112,928 KB
testcase_23 AC 272 ms
85,932 KB
testcase_24 AC 199 ms
80,688 KB
testcase_25 AC 120 ms
76,732 KB
testcase_26 AC 448 ms
104,440 KB
testcase_27 AC 551 ms
111,632 KB
testcase_28 AC 512 ms
100,148 KB
testcase_29 AC 257 ms
83,576 KB
testcase_30 AC 304 ms
88,916 KB
testcase_31 AC 293 ms
84,988 KB
testcase_32 AC 846 ms
123,632 KB
testcase_33 AC 43 ms
52,480 KB
testcase_34 AC 43 ms
52,480 KB
testcase_35 AC 43 ms
52,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

from heapq import heappop,heappush,heapify

H,W=map(int,input().split())

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

Q1=[]
Q2=[]
USE=[[0]*W for i in range(H)]
USE2=[[0]*W for i in range(H)]

USE3=[[0]*W for i in range(H)]
USE4=[[0]*W for i in range(H)]


Q1.append((A[0][1],0,1))
Q1.append((A[1][0],1,0))

Q2.append((A[H-1][W-2],H-1,W-2))
Q2.append((A[H-2][W-1],H-2,W-1))

heapify(Q1)
heapify(Q2)

USE[0][0]=1
USE2[H-1][W-1]=1
flag=0
for tt in range(10**9):
    if flag==1:
        break
    if tt%2==0:
        while True:
            _,x,y=heappop(Q1)
            if USE[x][y]==1:
                continue
            USE[x][y]=1
            break

        for z,w in [(x+1,y),(x-1,y),(x,y-1),(x,y+1)]:
            if 0<=z<H and 0<=w<W:
                if USE3[z][w]==0:
                    heappush(Q1,(A[z][w],z,w))
                    USE3[z][w]=1
                if USE2[z][w]==1:
                    flag=1
    else:
        while True:
            _,x,y=heappop(Q2)
            if USE2[x][y]==1:
                continue
            USE2[x][y]=1
            break


        for z,w in [(x+1,y),(x-1,y),(x,y-1),(x,y+1)]:
            if 0<=z<H and 0<=w<W:
                if USE4[z][w]==0:
                    heappush(Q2,(A[z][w],z,w))
                    USE4[z][w]=1
                if USE[z][w]==1:
                    flag=1
print(tt)
0