結果

問題 No.2731 Two Colors
ユーザー ShirotsumeShirotsume
提出日時 2024-04-19 22:59:12
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,727 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 133,032 KB
最終ジャッジ日時 2024-10-11 17:03:07
合計ジャッジ時間 29,142 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 AC 142 ms
78,976 KB
testcase_04 AC 203 ms
80,240 KB
testcase_05 AC 203 ms
79,956 KB
testcase_06 AC 364 ms
87,284 KB
testcase_07 AC 286 ms
85,688 KB
testcase_08 AC 176 ms
79,908 KB
testcase_09 AC 624 ms
107,148 KB
testcase_10 AC 148 ms
78,848 KB
testcase_11 AC 1,138 ms
130,544 KB
testcase_12 AC 543 ms
104,876 KB
testcase_13 AC 954 ms
121,052 KB
testcase_14 AC 366 ms
91,524 KB
testcase_15 AC 173 ms
79,420 KB
testcase_16 AC 534 ms
97,404 KB
testcase_17 AC 603 ms
101,032 KB
testcase_18 AC 261 ms
81,984 KB
testcase_19 AC 599 ms
100,056 KB
testcase_20 AC 364 ms
92,856 KB
testcase_21 AC 253 ms
82,812 KB
testcase_22 AC 831 ms
117,612 KB
testcase_23 AC 375 ms
89,260 KB
testcase_24 AC 242 ms
82,108 KB
testcase_25 AC 135 ms
78,436 KB
testcase_26 AC 562 ms
103,356 KB
testcase_27 AC 763 ms
112,756 KB
testcase_28 AC 704 ms
108,008 KB
testcase_29 AC 364 ms
87,400 KB
testcase_30 AC 396 ms
91,252 KB
testcase_31 AC 393 ms
89,464 KB
testcase_32 AC 1,121 ms
133,032 KB
testcase_33 AC 45 ms
56,320 KB
testcase_34 AC 47 ms
56,320 KB
testcase_35 AC 46 ms
56,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, time, random
from collections import deque, Counter, defaultdict
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 61 - 1
mod = 998244353
import heapq
class Heap():
    def __init__(self, maxi = False):
        self.sum = 0
        self.al = []
        self.maxi = maxi
        self.len = 0

    def __len__(self):
        return len(self.al)

    def add(self, x):
        if self.maxi:
            heapq.heappush(self.al, -x)
        else:
            heapq.heappush(self.al, x)
    
    def pop(self):
        if self.maxi:
            now = heapq.heappop(self.al)
            return -now
        else:
            now = heapq.heappop(self.al)
            return now

    def top(self):
        now = self.pop()
        self.add(now)
        return now
h, w = mi()
a = [li() for _ in range(h)]

zero = Heap()
one = Heap()

color = [[-1] * w for _ in range(h)]


zero.add((a[0][0], 0, 0))
one.add((a[h - 1][w - 1], h - 1, w - 1))
i = 0
while True:
    if i % 2 == 0:
        now, x, y = zero.pop()
    else:
        now, x, y = one.pop()
    if color[x][y] != -1:
        continue
    color[x][y] = i % 2
    f = True
    for tox, toy in [(1, 0), (-1, 0), (0, 1), (0, -1)]:
        nx, ny = x + tox, y + toy
        if 0 <= nx < h and 0 <= ny < w and color[nx][ny] == -1:
            if i % 2 == 0:
                zero.add((a[nx][ny], nx, ny))
            else:
                one.add((a[nx][ny], nx, ny))
        elif 0 <= nx < h and 0 <= ny < w and color[nx][ny] == 1 - color[x][y] and color[nx][ny] != -1:
            f = False
            break
    i += 1
    if not f:
        break
print(i - 2)
    
    
    
0