結果
問題 | No.2639 Longest Increasing Walk |
ユーザー | twooimp2 |
提出日時 | 2024-02-20 01:36:37 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 53 ms / 2,000 ms |
コード長 | 1,119 bytes |
コンパイル時間 | 5,713 ms |
コンパイル使用メモリ | 312,980 KB |
実行使用メモリ | 13,460 KB |
最終ジャッジ日時 | 2024-09-29 03:21:16 |
合計ジャッジ時間 | 7,460 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 33 |
ソースコード
#pragma GCC target("avx2") #pragma GCC optimize("O3") #pragma GCC optimize("unroll-loops") #include<bits/stdc++.h> #include<atcoder/all> using namespace std; using namespace atcoder; using ll=long long; using T=tuple<ll,ll,ll>; void IO(){ ios::sync_with_stdio(false); std::cin.tie(nullptr); } int main(){ IO(); ll h,w; cin>>h>>w; vector<vector<ll>> a(h,vector<ll>(w)); for(ll i=0;i<h;i++){ for(ll j=0;j<w;j++){ cin>>a[i][j]; } } vector<T> v; for(ll i=0;i<h;i++){ for(ll j=0;j<w;j++){ v.push_back(T(a[i][j],i,j)); } } sort(v.begin(),v.end()); vector<ll> dx={0,0,-1,1}; vector<ll> dy={-1,1,0,0}; vector<vector<ll>> dp(h,vector<ll>(w,-1e18)); for(ll i=0;i<h*w;i++){ ll x=get<1>(v[i]); ll y=get<2>(v[i]); dp[x][y]=1; for(ll j=0;j<4;j++){ ll nx=x+dx[j]; ll ny=y+dy[j]; if(0<=nx&&nx<h&&0<=ny&&ny<w){ if(a[nx][ny]<a[x][y]){ dp[x][y]=max(dp[x][y],dp[nx][ny]+1); } } } } ll ans=-1e18; for(ll i=0;i<h;i++){ for(ll j=0;j<w;j++){ ans=max(ans,dp[i][j]); } } cout<<ans<<endl; }