結果

問題 No.2731 Two Colors
ユーザー hato336hato336
提出日時 2024-04-19 21:39:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,703 ms / 3,000 ms
コード長 1,284 bytes
コンパイル時間 565 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 275,688 KB
最終ジャッジ日時 2024-10-11 14:25:52
合計ジャッジ時間 27,008 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,645 ms
275,608 KB
testcase_01 AC 2,699 ms
275,476 KB
testcase_02 AC 2,703 ms
275,688 KB
testcase_03 AC 189 ms
91,008 KB
testcase_04 AC 222 ms
92,160 KB
testcase_05 AC 220 ms
92,328 KB
testcase_06 AC 334 ms
99,468 KB
testcase_07 AC 289 ms
98,956 KB
testcase_08 AC 202 ms
90,752 KB
testcase_09 AC 571 ms
123,316 KB
testcase_10 AC 191 ms
90,752 KB
testcase_11 AC 1,058 ms
164,300 KB
testcase_12 AC 564 ms
121,280 KB
testcase_13 AC 907 ms
146,704 KB
testcase_14 AC 385 ms
106,008 KB
testcase_15 AC 212 ms
91,092 KB
testcase_16 AC 492 ms
114,380 KB
testcase_17 AC 526 ms
116,820 KB
testcase_18 AC 251 ms
94,732 KB
testcase_19 AC 523 ms
115,652 KB
testcase_20 AC 383 ms
105,680 KB
testcase_21 AC 272 ms
95,104 KB
testcase_22 AC 768 ms
137,852 KB
testcase_23 AC 347 ms
100,884 KB
testcase_24 AC 263 ms
95,360 KB
testcase_25 AC 185 ms
90,424 KB
testcase_26 AC 547 ms
119,360 KB
testcase_27 AC 686 ms
133,228 KB
testcase_28 AC 648 ms
128,496 KB
testcase_29 AC 327 ms
99,192 KB
testcase_30 AC 379 ms
103,024 KB
testcase_31 AC 372 ms
102,388 KB
testcase_32 AC 1,027 ms
162,276 KB
testcase_33 AC 122 ms
85,376 KB
testcase_34 AC 124 ms
85,724 KB
testcase_35 AC 124 ms
85,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections,sys,math,functools,operator,itertools,bisect,heapq,decimal,string,time,random
#sys.setrecursionlimit(10**9)
#sys.set_int_max_str_digits(0)
#input = sys.stdin.readline
#n = int(input())
#
#alist = []
#s = input()
h,w = map(int,input().split())
grid = [list(map(int,input().split())) for i in range(h)]
color = [[],[]]
s = [set(),set()]
c = [[-1 for i in range(w)] for j in range(h)]
c[0][0] = 0
c[h-1][w-1] = 1
heapq.heappush(color[0],(grid[0][1],0,1))
heapq.heappush(color[0],(grid[1][0],1,0))
s[0].add((0,1))
s[0].add((1,0))
s[0].add((0,0))
heapq.heappush(color[1],(grid[h-2][w-1],h-2,w-1))
heapq.heappush(color[1],(grid[h-1][w-2],h-1,w-2))
s[1].add((h-2,w-1))
s[1].add((h-1,w-2))
s[1].add((h-1,w-1))
ans = 0
dxy = [[-1,0],[1,0],[0,1],[0,-1]]
for i in range(h*w):
    v,x,y = heapq.heappop(color[i%2])
    while c[x][y] != -1:
        if not color[i%2]:
            print(ans)
            exit()
        v,x,y = heapq.heappop(color[i%2])
    c[x][y] = i%2
    ans += 1
    for dx,dy in dxy:
        if 0 <= x+dx < h and 0 <= y+dy < w:
            if c[x+dx][y+dy] == (i%2)^1:
                exit(print(ans))
            if (x+dx,y+dy) not in s[i%2]:
                s[i%2].add((x+dx,y+dy))
                heapq.heappush(color[i%2],(grid[x+dx][y+dy],x+dx,y+dy))

0