結果

問題 No.2639 Longest Increasing Walk
ユーザー hirayuu_ychirayuu_yc
提出日時 2024-02-19 21:26:19
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 612 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,596 KB
実行使用メモリ 118,744 KB
最終ジャッジ日時 2024-09-29 01:21:48
合計ジャッジ時間 7,126 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,592 KB
testcase_01 AC 37 ms
52,700 KB
testcase_02 AC 38 ms
53,284 KB
testcase_03 AC 41 ms
52,788 KB
testcase_04 AC 195 ms
117,052 KB
testcase_05 AC 215 ms
118,128 KB
testcase_06 AC 232 ms
117,904 KB
testcase_07 AC 372 ms
117,440 KB
testcase_08 AC 237 ms
118,136 KB
testcase_09 AC 399 ms
118,744 KB
testcase_10 AC 512 ms
98,260 KB
testcase_11 AC 416 ms
100,560 KB
testcase_12 AC 92 ms
73,988 KB
testcase_13 AC 530 ms
102,952 KB
testcase_14 AC 292 ms
93,140 KB
testcase_15 WA -
testcase_16 AC 53 ms
66,252 KB
testcase_17 AC 215 ms
93,352 KB
testcase_18 AC 345 ms
96,876 KB
testcase_19 AC 122 ms
80,828 KB
testcase_20 AC 213 ms
83,004 KB
testcase_21 AC 462 ms
98,560 KB
testcase_22 AC 170 ms
84,816 KB
testcase_23 AC 48 ms
61,764 KB
testcase_24 AC 46 ms
61,692 KB
testcase_25 AC 50 ms
64,824 KB
testcase_26 AC 37 ms
52,616 KB
testcase_27 AC 54 ms
64,112 KB
testcase_28 AC 36 ms
52,588 KB
testcase_29 AC 37 ms
52,336 KB
testcase_30 AC 37 ms
53,940 KB
testcase_31 AC 38 ms
53,348 KB
testcase_32 AC 37 ms
52,396 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<<60)]*(W) for i in range(H)]
for a,i,j in p:
    dp[i][j]=1
    for dx,dy in [(0,1),(1,0),(0,-1),(-1,0)]:
        try:
            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