結果

問題 No.2731 Two Colors
ユーザー rarpipipirarpipipi
提出日時 2024-04-20 11:04:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,484 ms / 3,000 ms
コード長 1,089 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 107,392 KB
最終ジャッジ日時 2024-10-12 06:43:55
合計ジャッジ時間 17,305 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,484 ms
103,312 KB
testcase_01 AC 1,480 ms
103,592 KB
testcase_02 AC 1,464 ms
103,720 KB
testcase_03 AC 97 ms
77,036 KB
testcase_04 AC 127 ms
78,032 KB
testcase_05 AC 131 ms
77,696 KB
testcase_06 AC 221 ms
81,868 KB
testcase_07 AC 173 ms
80,956 KB
testcase_08 AC 120 ms
77,472 KB
testcase_09 AC 403 ms
94,932 KB
testcase_10 AC 105 ms
77,488 KB
testcase_11 AC 768 ms
104,008 KB
testcase_12 AC 395 ms
93,712 KB
testcase_13 AC 658 ms
99,376 KB
testcase_14 AC 259 ms
84,556 KB
testcase_15 AC 120 ms
77,220 KB
testcase_16 AC 344 ms
86,336 KB
testcase_17 AC 369 ms
88,516 KB
testcase_18 AC 158 ms
78,304 KB
testcase_19 AC 367 ms
86,696 KB
testcase_20 AC 258 ms
86,784 KB
testcase_21 AC 171 ms
78,748 KB
testcase_22 AC 542 ms
98,924 KB
testcase_23 AC 216 ms
81,920 KB
testcase_24 AC 155 ms
78,492 KB
testcase_25 AC 103 ms
76,800 KB
testcase_26 AC 377 ms
91,864 KB
testcase_27 AC 495 ms
97,536 KB
testcase_28 AC 446 ms
92,184 KB
testcase_29 AC 207 ms
80,612 KB
testcase_30 AC 242 ms
83,448 KB
testcase_31 AC 240 ms
81,788 KB
testcase_32 AC 749 ms
107,392 KB
testcase_33 AC 36 ms
52,864 KB
testcase_34 AC 37 ms
52,992 KB
testcase_35 AC 38 ms
52,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

walk=[
    (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 i in range(h)]
fi=[[-1]*w for i in range(h)]
fi[0][0]=0
fi[0][1]=2
fi[1][0]=2
fi[-1][-1]=1
fi[-1][-2]=3
fi[-2][-1]=3

que0=[]
que1=[]
heappush(que0,(a[0][1],0,1))
heappush(que0,(a[1][0],1,0))
heappush(que1,(a[h-1][w-2],h-1,w-2))
heappush(que1,(a[h-2][w-1],h-2,w-1))
que=[que0,que1]

def inside(y,x):
    return 0<=y<h and 0<=x<w

for i in range(h*w):
    t_que=que[i%2]
    _,y,x=heappop(t_que)

    fi[y][x]=i%2
    # 隣がo_coloredで塗られている場合exit
    for iy,ix in walk:
        ny,nx=iy+y,ix+x
        if inside(ny,nx) and fi[ny][nx]==(1^(i%2)):
            print(i+1)
            exit()

    for iy,ix in walk:
        ny,nx=iy+y,ix+x
        if inside(ny,nx):
            if fi[ny][nx]==-1 or fi[ny][nx]&1!=i%2:
                if fi[ny][nx]==-1:
                    fi[ny][nx]=2|(i%2)
                else:
                    fi[ny][nx]|=i%2

                heappush(t_que,(a[ny][nx],ny,nx))






0