結果

問題 No.2639 Longest Increasing Walk
ユーザー tailstails
提出日時 2024-02-21 11:21:50
言語 cLay
(20240714-1)
結果
AC  
実行時間 220 ms / 2,000 ms
コード長 253 bytes
コンパイル時間 3,604 ms
コンパイル使用メモリ 181,924 KB
実行使用メモリ 55,240 KB
最終ジャッジ日時 2024-09-29 04:13:06
合計ジャッジ時間 5,911 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 126 ms
22,088 KB
testcase_05 AC 220 ms
22,976 KB
testcase_06 AC 132 ms
55,240 KB
testcase_07 AC 153 ms
22,728 KB
testcase_08 AC 136 ms
22,728 KB
testcase_09 AC 151 ms
22,976 KB
testcase_10 AC 75 ms
16,076 KB
testcase_11 AC 68 ms
14,532 KB
testcase_12 AC 11 ms
7,496 KB
testcase_13 AC 81 ms
16,456 KB
testcase_14 AC 51 ms
12,360 KB
testcase_15 AC 2 ms
6,820 KB
testcase_16 AC 4 ms
6,820 KB
testcase_17 AC 45 ms
11,844 KB
testcase_18 AC 56 ms
13,640 KB
testcase_19 AC 15 ms
7,748 KB
testcase_20 AC 33 ms
9,216 KB
testcase_21 AC 68 ms
14,404 KB
testcase_22 AC 25 ms
9,544 KB
testcase_23 AC 2 ms
6,820 KB
testcase_24 AC 2 ms
6,820 KB
testcase_25 AC 2 ms
6,820 KB
testcase_26 AC 2 ms
6,820 KB
testcase_27 AC 3 ms
6,820 KB
testcase_28 AC 1 ms
6,820 KB
testcase_29 AC 1 ms
6,820 KB
testcase_30 AC 2 ms
6,820 KB
testcase_31 AC 2 ms
6,816 KB
testcase_32 AC 2 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ll h,w,a[500][500];
ll f(ll y,ll x:Memoize){
	ll b=a[y][x];
	return max(
		y&&a[y-1][x]>b?f(y-1,x):0,
		~y+h&&a[y+1][x]>b?f(y+1,x):0,
		x&&a[y][x-1]>b?f(y,x-1):0,
		~x+w&&a[y][x+1]>b?f(y,x+1):0
	)+1;
}
{
	rd(h,w,a(h,w));
	wt(max[y,0,h,x,0,w](f(y,x)));
}
0