結果

問題 No.2639 Longest Increasing Walk
ユーザー kenken714kenken714
提出日時 2024-02-19 21:31:19
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 1,125 bytes
コンパイル時間 2,041 ms
コンパイル使用メモリ 209,456 KB
実行使用メモリ 13,532 KB
最終ジャッジ日時 2024-09-29 01:27:03
合計ジャッジ時間 4,379 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;

#define REP(i, n) for(ll i = 0;i < n;i++)
#define REPR(i, n) for(ll i = n;i >= 0;i--)
#define FOR(i, m, n) for(ll i = m;i < n;i++)
#define FORR(i, m, n) for(ll i = m;i >= n;i--)
#define REPO(i, n) for(ll i = 1;i <= n;i++)
#define ll long long
#define INF (ll)1ll << 60
#define MINF (-1 * INF)
#define ALL(n) n.begin(),n.end()
#define MOD (ll)1000000007
#define P pair<ll, ll>

#define PP pair<ll, P>
ll h, w, ans, s[510][510], dp[510][510];
ll vx[4] = {1, -1, 0, 0}, vy[4] = {0, 0, -1, 1};
vector<PP> v;
int main(){
    cin >> h >> w;
    REP(i, h){
        REP(j, w){
            cin >> s[i][j];
            v.push_back(PP(s[i][j], P(i, j)));
        }
    }
    sort(ALL(v));
    REP(i, v.size()){
        ll x = v[i].second.first, y = v[i].second.second;
        ans = max(ans, dp[x][y] + 1);
        REP(j, 4){
            ll nx = x + vx[j], ny = y + vy[j];
            if(0 > nx or nx >= h or 0 > ny or ny >= w)continue;
            if(s[nx][ny] > s[x][y]){
                dp[nx][ny] = max(dp[nx][ny], dp[x][y] + 1);
            }
        }
    }
    cout <<ans << endl;
}
0