結果

問題 No.2639 Longest Increasing Walk
ユーザー hirayuu_ychirayuu_yc
提出日時 2024-02-19 21:27:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 565 ms / 2,000 ms
コード長 644 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 118,488 KB
最終ジャッジ日時 2024-09-29 01:23:14
合計ジャッジ時間 7,370 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,884 KB
testcase_01 AC 36 ms
53,164 KB
testcase_02 AC 38 ms
52,424 KB
testcase_03 AC 37 ms
53,248 KB
testcase_04 AC 194 ms
117,168 KB
testcase_05 AC 219 ms
117,940 KB
testcase_06 AC 230 ms
117,756 KB
testcase_07 AC 382 ms
117,464 KB
testcase_08 AC 237 ms
118,260 KB
testcase_09 AC 409 ms
118,488 KB
testcase_10 AC 534 ms
98,140 KB
testcase_11 AC 402 ms
100,356 KB
testcase_12 AC 93 ms
74,312 KB
testcase_13 AC 565 ms
102,692 KB
testcase_14 AC 319 ms
92,836 KB
testcase_15 AC 37 ms
52,492 KB
testcase_16 AC 55 ms
65,012 KB
testcase_17 AC 229 ms
92,936 KB
testcase_18 AC 365 ms
96,912 KB
testcase_19 AC 124 ms
80,652 KB
testcase_20 AC 230 ms
83,116 KB
testcase_21 AC 480 ms
98,752 KB
testcase_22 AC 168 ms
84,636 KB
testcase_23 AC 48 ms
62,148 KB
testcase_24 AC 49 ms
62,928 KB
testcase_25 AC 53 ms
64,696 KB
testcase_26 AC 38 ms
53,200 KB
testcase_27 AC 55 ms
65,280 KB
testcase_28 AC 37 ms
53,148 KB
testcase_29 AC 38 ms
52,796 KB
testcase_30 AC 37 ms
52,280 KB
testcase_31 AC 38 ms
52,092 KB
testcase_32 AC 36 ms
53,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#sys.setrecursionlimit((1<<19)-1)
#import pypyjit
#pypyjit.set_param('max_unroll_recursion=-1')
input=sys.stdin.buffer.readline

H,W=map(int,input().split())
A=[list(map(int,input().split())) for i in range(H)]
p=[]
for i in range(H):
    for j in range(W):
        p.append((A[i][j],i,j))
p.sort()
dp=[[1]*(W) for i in range(H)]
for a,i,j in p:
    for dx,dy in [(0,1),(1,0),(0,-1),(-1,0)]:
        try:
            assert i+dx>=0
            assert j+dy>=0
            if a>A[i+dx][j+dy]:
                dp[i][j]=max(dp[i][j],dp[i+dx][j+dy]+1)
        except:
            pass
ans=0
for i in dp:
    ans=max(ans,max(i))
print(ans)
0