結果

問題 No.2731 Two Colors
ユーザー flygonflygon
提出日時 2024-04-19 21:51:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,074 ms / 3,000 ms
コード長 1,340 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 113,280 KB
最終ジャッジ日時 2024-10-11 14:49:53
合計ジャッジ時間 20,866 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,045 ms
108,416 KB
testcase_01 AC 2,074 ms
108,800 KB
testcase_02 AC 2,022 ms
108,288 KB
testcase_03 AC 167 ms
78,592 KB
testcase_04 AC 216 ms
79,872 KB
testcase_05 AC 204 ms
79,360 KB
testcase_06 AC 284 ms
83,456 KB
testcase_07 AC 264 ms
82,816 KB
testcase_08 AC 198 ms
79,488 KB
testcase_09 AC 437 ms
97,536 KB
testcase_10 AC 183 ms
78,592 KB
testcase_11 AC 691 ms
108,800 KB
testcase_12 AC 406 ms
97,152 KB
testcase_13 AC 621 ms
105,216 KB
testcase_14 AC 323 ms
86,912 KB
testcase_15 AC 189 ms
78,592 KB
testcase_16 AC 379 ms
89,728 KB
testcase_17 AC 412 ms
92,416 KB
testcase_18 AC 238 ms
79,488 KB
testcase_19 AC 403 ms
90,496 KB
testcase_20 AC 325 ms
89,088 KB
testcase_21 AC 227 ms
79,872 KB
testcase_22 AC 541 ms
103,040 KB
testcase_23 AC 288 ms
83,968 KB
testcase_24 AC 234 ms
80,000 KB
testcase_25 AC 153 ms
78,080 KB
testcase_26 AC 425 ms
95,104 KB
testcase_27 AC 537 ms
101,632 KB
testcase_28 AC 480 ms
95,616 KB
testcase_29 AC 288 ms
83,072 KB
testcase_30 AC 311 ms
86,144 KB
testcase_31 AC 326 ms
85,120 KB
testcase_32 AC 693 ms
113,280 KB
testcase_33 AC 49 ms
54,528 KB
testcase_34 AC 49 ms
54,528 KB
testcase_35 AC 49 ms
54,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(5*10**5)
input = sys.stdin.readline
from collections import defaultdict, deque, Counter
from heapq import heappop, heappush
from bisect import bisect_left, bisect_right
from math import gcd

h,w = map(int,input().split())
a = [list(map(int,input().split())) for i in range(h)]

col = [[-1]*(w) for i in range(h)]
r = [(a[0][0],0*w+0)]
b = [(a[-1][-1],(h-1)*w+(w-1))]

dx = [1,-1,0,0]
dy = [0,0,1,-1]
for i in range(h*w+10):
    if i % 2 == 0:
        while r:
            num, crr = heappop(r)
            x, y = crr//w, crr%w
            if col[x][y] == -1:
                col[x][y] = 1
                break
        for j in range(4):
            nx = x+dx[j]
            ny = y+dy[j]
            if not (0<=nx<h and 0<=ny<w):continue
            if col[nx][ny] == 0:
                print(i-1)
                exit()
            heappush(r, (a[nx][ny],nx*w+ny))
    else:
        while b:
            num, crr = heappop(b)
            x, y = crr//w, crr%w
            if col[x][y] == -1:
                col[x][y] = 0
                break
        for j in range(4):
            nx = x+dx[j]
            ny = y+dy[j]
            if not (0<=nx<h and 0<=ny<w):continue
            if col[nx][ny] == 1:
                print(i-1)
                exit()
            heappush(b, (a[nx][ny], nx*w+ny))

    

0