結果

問題 No.1668 Grayscale
ユーザー KudeKude
提出日時 2021-09-03 23:01:09
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,194 bytes
コンパイル時間 4,993 ms
コンパイル使用メモリ 263,036 KB
実行使用メモリ 65,792 KB
最終ジャッジ日時 2024-05-09 06:24:51
合計ジャッジ時間 8,244 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 WA -
testcase_05 AC 2 ms
5,376 KB
testcase_06 WA -
testcase_07 AC 240 ms
65,792 KB
testcase_08 AC 65 ms
7,168 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

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);
    int ans = *max_element(all(dp)) + 1;
    cout << ans << endl;
}
0