結果

問題 No.1668 Grayscale
ユーザー KudeKude
提出日時 2021-09-03 23:05:57
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 661 ms / 4,000 ms
コード長 1,258 bytes
コンパイル時間 4,407 ms
コンパイル使用メモリ 252,344 KB
最終ジャッジ日時 2025-01-24 06:55:26
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/all>
using namespace std;
using namespace atcoder;
#define rep(i,n)for (int i = 0; i < int(n); ++i)
#define rrep(i,n)for (int i = int(n)-1; i >= 0; --i)
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend()
template<class T> void chmax(T& a, const T& b) {a = max(a, b);}
template<class T> void chmin(T& a, const T& b) {a = min(a, b);}
using ll = long long;
using P = pair<int,int>;
using VI = vector<int>;
using VVI = vector<VI>;
using VL = vector<ll>;
using VVL = vector<VL>;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    int h, w, n;
    cin >> h >> w >> n;
    VVI c(h, VI(w));
    rep(i, h) rep(j, w) cin >> c[i][j], c[i][j]--;
    VVI to(n);
    rep(i, h - 1) rep(j, w) {
        int x = c[i][j], y = c[i + 1][j];
        if (x < y) to[x].push_back(y);
        else if (x > y) to[y].push_back(x);
    }
    rep(i, h) rep(j, w - 1) {
        int x = c[i][j], y = c[i][j + 1];
        if (x < y) to[x].push_back(y);
        else if (x > y) to[y].push_back(x);
    }
    VI dp(n);
    rep(i, n) {
        for(int j: to[i]) chmax(dp[j], dp[i] + 1);
        if (i + 1 < n) chmax(dp[i + 1], dp[i]);
    }
    int ans = *max_element(all(dp)) + 1;
    cout << ans << endl;
}
0