結果

問題 No.2639 Longest Increasing Walk
ユーザー daiotadaiota
提出日時 2024-02-20 08:17:07
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 374 ms / 2,000 ms
コード長 1,115 bytes
コンパイル時間 1,807 ms
コンパイル使用メモリ 186,252 KB
実行使用メモリ 23,928 KB
最終ジャッジ日時 2024-09-29 03:24:05
合計ジャッジ時間 6,272 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 278 ms
23,924 KB
testcase_05 AC 176 ms
23,796 KB
testcase_06 AC 178 ms
23,412 KB
testcase_07 AC 214 ms
23,548 KB
testcase_08 AC 185 ms
23,556 KB
testcase_09 AC 223 ms
23,928 KB
testcase_10 AC 341 ms
15,192 KB
testcase_11 AC 285 ms
13,688 KB
testcase_12 AC 27 ms
6,816 KB
testcase_13 AC 374 ms
15,980 KB
testcase_14 AC 170 ms
10,800 KB
testcase_15 AC 2 ms
6,820 KB
testcase_16 AC 5 ms
6,816 KB
testcase_17 AC 109 ms
10,484 KB
testcase_18 AC 202 ms
12,256 KB
testcase_19 AC 41 ms
6,816 KB
testcase_20 AC 106 ms
8,604 KB
testcase_21 AC 282 ms
13,688 KB
testcase_22 AC 69 ms
7,412 KB
testcase_23 AC 2 ms
6,816 KB
testcase_24 AC 2 ms
6,820 KB
testcase_25 AC 3 ms
6,820 KB
testcase_26 AC 2 ms
6,820 KB
testcase_27 AC 4 ms
6,816 KB
testcase_28 AC 1 ms
6,816 KB
testcase_29 AC 2 ms
6,816 KB
testcase_30 AC 1 ms
6,816 KB
testcase_31 AC 1 ms
6,820 KB
testcase_32 AC 1 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

typedef long long ll;
typedef pair<int,int> P;
typedef pair<int,P> Q;
#define REP(i,n) for(int i=0;i<int(n);i++)

int a[510][510];
int H,W;
bool inside(int i,int j){
	return (1<=i && i<=H && 1<=j && j<=W);
}


int main(){
	cin.tie(nullptr);  ios_base::sync_with_stdio(false);
	int i,j;


	cin >> H >> W;

	vector<Q> v;
	for(i=1;i<=H;i++) for(j=1;j<=W;j++){
		cin >> a[i][j];
		v.push_back(Q(a[i][j],P(i,j)));
	}

	sort(v.begin(),v.end());

	map<P,int> m;
	REP(i,H*W) m[P(v[i].second.first,v[i].second.second)]=i;

	vector<int> dp(H*W,1);
	REP(i,H*W){
		int x=v[i].second.first,y=v[i].second.second;

		int k=m[P(x+1,y)];
		if(inside(x+1,y) && k>i && a[x+1][y]!=a[x][y]) dp[k]=max(dp[k],dp[i]+1);

		k=m[P(x,y+1)];
		if(inside(x,y+1) && k>i && a[x][y+1]!=a[x][y]) dp[k]=max(dp[k],dp[i]+1);

		k=m[P(x-1,y)];
		if(inside(x-1,y) && k>i && a[x-1][y]!=a[x][y]) dp[k]=max(dp[k],dp[i]+1);

		k=m[P(x,y-1)];
		if(inside(x,y-1) && k>i && a[x][y-1]!=a[x][y]) dp[k]=max(dp[k],dp[i]+1);


	}


	int ans=1;
	REP(i,H*W) ans=max(ans,dp[i]);

	cout << ans << endl;


    return 0;
}
0