結果

問題 No.2731 Two Colors
ユーザー るこーそーるこーそー
提出日時 2024-09-24 20:55:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 888 ms / 3,000 ms
コード長 982 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 82,188 KB
実行使用メモリ 267,956 KB
最終ジャッジ日時 2024-09-24 20:56:00
合計ジャッジ時間 13,340 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 888 ms
267,956 KB
testcase_01 AC 817 ms
267,396 KB
testcase_02 AC 848 ms
267,620 KB
testcase_03 AC 92 ms
77,352 KB
testcase_04 AC 121 ms
84,136 KB
testcase_05 AC 116 ms
80,856 KB
testcase_06 AC 195 ms
99,480 KB
testcase_07 AC 173 ms
106,744 KB
testcase_08 AC 106 ms
79,288 KB
testcase_09 AC 385 ms
197,672 KB
testcase_10 AC 98 ms
77,532 KB
testcase_11 AC 529 ms
159,760 KB
testcase_12 AC 378 ms
186,292 KB
testcase_13 AC 428 ms
158,240 KB
testcase_14 AC 248 ms
109,732 KB
testcase_15 AC 101 ms
78,620 KB
testcase_16 AC 249 ms
116,012 KB
testcase_17 AC 287 ms
138,264 KB
testcase_18 AC 134 ms
83,976 KB
testcase_19 AC 257 ms
116,300 KB
testcase_20 AC 276 ms
156,452 KB
testcase_21 AC 141 ms
85,344 KB
testcase_22 AC 429 ms
190,696 KB
testcase_23 AC 185 ms
99,880 KB
testcase_24 AC 141 ms
88,920 KB
testcase_25 AC 102 ms
77,284 KB
testcase_26 AC 340 ms
177,544 KB
testcase_27 AC 404 ms
190,056 KB
testcase_28 AC 321 ms
138,136 KB
testcase_29 AC 177 ms
94,668 KB
testcase_30 AC 217 ms
116,280 KB
testcase_31 AC 193 ms
97,124 KB
testcase_32 AC 573 ms
201,488 KB
testcase_33 AC 43 ms
55,132 KB
testcase_34 AC 42 ms
54,904 KB
testcase_35 AC 42 ms
55,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

from collections import defaultdict
from heapq import heappop,heappush,heapify

h,w=map(int,input().split())
A=[list(map(int,input().split())) for _ in range(h)]
pos=defaultdict(tuple)
for i in range(h):
    for j in range(w):
        pos[A[i][j]]=(i,j)
        
color=[[-1]*w for _ in range(h)]
color[0][0]=1;color[h-1][w-1]=0
que=[[A[h-1][w-2],A[h-2][w-1]],[A[0][1],A[1][0]]]
heapify(que[0]);heapify(que[1])
s=[set(),set()]
for i in range(2):
    for a in que[i]:
        s[i].add(a)
        
for turn in range(1,h*w+1):
    a=heappop(que[turn%2])
    i,j=pos[a]
    color[i][j]=turn%2
    for di,dj in [(1,0),(0,1),(-1,0),(0,-1)]:
        ni,nj=i+di,j+dj
        if 0<=ni<h and 0<=nj<w and color[ni][nj]==-1 and A[ni][nj] not in s[turn%2]:
            s[turn%2].add(A[ni][nj])
            heappush(que[turn%2],(A[ni][nj]))
            
        if 0<=ni<h and 0<=nj<w and color[ni][nj]==(1-turn%2):
            print(turn)
            exit()
0