結果
問題 | No.2639 Longest Increasing Walk |
ユーザー | otoshigo |
提出日時 | 2024-02-19 21:49:03 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 51 ms / 2,000 ms |
コード長 | 1,079 bytes |
コンパイル時間 | 1,194 ms |
コンパイル使用メモリ | 91,736 KB |
実行使用メモリ | 8,264 KB |
最終ジャッジ日時 | 2024-09-29 01:46:03 |
合計ジャッジ時間 | 2,556 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 33 |
ソースコード
#include<iostream> #include<algorithm> #include<vector> #include<tuple> using namespace std; using ll=long long; #define all(v) v.begin(),v.end() #define rall(v) v.rbegin(),v.rend() template<class T> bool chmax(T &a, T b){if (a < b){a = b;return true;} else return false;} template<class T> bool chmin(T &a, T b){if (a > b){a = b;return true;} else return false;} const int dx[]={1,0,-1,0},dy[]={0,1,0,-1}; int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int H,W; cin>>H>>W; vector A(H,vector<int>(W)); vector<tuple<int,int,int>>V; for(int i=0;i<H;i++)for(int j=0;j<W;j++){ cin>>A[i][j]; V.push_back(make_tuple(A[i][j],i,j)); } vector D(H,vector<int>(W)); sort(all(V)); for(auto[a,x,y]:V){ for(int i=0;i<4;i++){ int ex=x+dx[i],ey=y+dy[i]; if(ex>=0&&ex<H&&ey>=0&&ey<W&&A[x][y]<A[ex][ey]){ chmax(D[ex][ey],D[x][y]+1); } } } int ans=0; for(int i=0;i<H;i++)for(int j=0;j<W;j++)chmax(ans,D[i][j]); ans++; cout<<ans<<"\n"; }