結果

問題 No.2639 Longest Increasing Walk
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2024-03-20 15:37:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 265 ms / 2,000 ms
コード長 1,021 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,516 KB
実行使用メモリ 115,968 KB
最終ジャッジ日時 2024-09-30 06:06:23
合計ジャッジ時間 6,187 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
62,004 KB
testcase_01 AC 50 ms
62,336 KB
testcase_02 AC 49 ms
62,080 KB
testcase_03 AC 48 ms
62,208 KB
testcase_04 AC 147 ms
97,740 KB
testcase_05 AC 207 ms
115,776 KB
testcase_06 AC 208 ms
115,328 KB
testcase_07 AC 243 ms
114,968 KB
testcase_08 AC 215 ms
115,712 KB
testcase_09 AC 265 ms
115,968 KB
testcase_10 AC 183 ms
96,544 KB
testcase_11 AC 178 ms
96,128 KB
testcase_12 AC 101 ms
79,872 KB
testcase_13 AC 204 ms
99,544 KB
testcase_14 AC 159 ms
90,768 KB
testcase_15 AC 53 ms
62,592 KB
testcase_16 AC 91 ms
78,464 KB
testcase_17 AC 152 ms
90,228 KB
testcase_18 AC 163 ms
91,264 KB
testcase_19 AC 111 ms
80,504 KB
testcase_20 AC 133 ms
85,760 KB
testcase_21 AC 184 ms
95,188 KB
testcase_22 AC 128 ms
84,340 KB
testcase_23 AC 63 ms
69,172 KB
testcase_24 AC 63 ms
68,480 KB
testcase_25 AC 77 ms
74,624 KB
testcase_26 AC 52 ms
62,464 KB
testcase_27 AC 81 ms
76,160 KB
testcase_28 AC 50 ms
62,336 KB
testcase_29 AC 50 ms
62,216 KB
testcase_30 AC 50 ms
62,080 KB
testcase_31 AC 51 ms
62,208 KB
testcase_32 AC 53 ms
62,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# import pypyjit
# pypyjit.set_param("max_unroll_recursion=-1")
from collections import *
from functools import *
from itertools import *
from heapq import *
import sys, math,random,time
# input = sys.stdin.readline

H,W = map(int,input().split())
A = [tuple(map(int,input().split())) for _ in range(H)]

def nb(x,y):
    tmp = []
    if x+1<H:
        tmp.append((x+1,y))
    if x-1>=0:
        tmp.append((x-1,y))
    if y+1<W:
        tmp.append((x,y+1))
    if y-1>=0:
        tmp.append((x,y-1))
    return tmp
N = H*W
e = [[] for _ in range(N)]
ind = [0]*N
for i in range(H):
    for j in range(W):
        for ix,iy in nb(i,j):
            if A[i][j]<A[ix][iy]:
                e[W*i+j].append(W*ix+iy)
                ind[W*ix+iy] += 1

val = [-1]*N
v = deque()
for i in range(N):
    if ind[i]==0:
        val[i] = 1
        v.append(i)

while v:
    x = v.popleft()
    for ix in e[x]:

        val[ix] = max(val[ix],val[x]+1)
        ind[ix] -= 1
        if ind[ix]==0:
            v.append(ix)
print(max(val))
0