結果
問題 | No.2639 Longest Increasing Walk |
ユーザー | Nzt3 |
提出日時 | 2024-02-19 21:34:53 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 59 ms / 2,000 ms |
コード長 | 816 bytes |
コンパイル時間 | 2,120 ms |
コンパイル使用メモリ | 214,172 KB |
実行使用メモリ | 8,144 KB |
最終ジャッジ日時 | 2024-09-29 01:30:28 |
合計ジャッジ時間 | 3,798 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 33 |
ソースコード
#include<bits/stdc++.h> using namespace std; using ll=long long; int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int H,W; cin>>H>>W; vector A(H,vector(W,0)); vector V(0,array<int,3>()); for(int i=0;i<H;i++){ for(int j=0;j<W;j++){ cin>>A[i][j]; V.push_back({A[i][j],i,j}); } } sort(V.begin(),V.end()); vector dp(H,vector(W,1)); int dx[]={0,1,0,-1}; int dy[]={1,0,-1,0}; auto bound_ok=[&](int x,int y){ return x>=0&&x<H&&y>=0&&y<W; }; for(int i=0;i<H*W;i++){ auto [v,x,y]=V[i]; for(int j=0;j<4;j++){ int x2=x+dx[j],y2=y+dy[j]; if(bound_ok(x2,y2)&&A[x2][y2]<v){ dp[x][y]=max(dp[x][y],dp[x2][y2]+1); } } } int ans=0; for(int i=0;i<H;i++){ for(int j=0;j<W;j++)ans=max(ans,dp[i][j]); } cout<<ans<<'\n'; }