結果

問題 No.1668 Grayscale
ユーザー Ricky_ponRicky_pon
提出日時 2021-09-03 22:53:43
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,460 bytes
コンパイル時間 2,616 ms
コンパイル使用メモリ 217,900 KB
実行使用メモリ 97,092 KB
最終ジャッジ日時 2024-05-09 06:04:51
合計ジャッジ時間 7,351 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 311 ms
97,092 KB
testcase_07 AC 333 ms
97,016 KB
testcase_08 AC 232 ms
81,524 KB
testcase_09 AC 965 ms
97,012 KB
testcase_10 WA -
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 29 ms
8,916 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 WA -
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#include <atcoder/modint>

#include <algorithm>
#include <cassert>
#include <vector>

template <class T>
bool chmax(T &a, const T &b) {
    if (a < b) {
        a = b;
        return true;
    }
    return false;
}

template <class T>
bool chmin(T &a, const T &b) {
    if (a > b) {
        a = b;
        return true;
    }
    return false;
}

template <class T>
T div_floor(T a, T b) {
    if (b < 0) a *= -1, b *= -1;
    return a >= 0 ? a / b : (a + 1) / b - 1;
}

template <class T>
T div_ceil(T a, T b) {
    if (b < 0) a *= -1, b *= -1;
    return a > 0 ? (a - 1) / b + 1 : a / b;
}

template <typename T>
struct CoordComp {
    std::vector<T> v;
    bool sorted;

    CoordComp() : sorted(false) {}

    int size() { return v.size(); }

    void add(T x) { v.push_back(x); }

    void build() {
        std::sort(v.begin(), v.end());

        v.erase(std::unique(v.begin(), v.end()), v.end());
        sorted = true;
    }

    int get_idx(T x) {
        assert(sorted);
        return lower_bound(v.begin(), v.end(), x) - v.begin();
    }

    T &operator[](int i) { return v[i]; }
};


#define For(i, a, b) for (int i = (int)(a); (i) < (int)(b); ++(i))
#define rFor(i, a, b) for (int i = (int)(a)-1; (i) >= (int)(b); --(i))
#define rep(i, n) For(i, 0, n)
#define rrep(i, n) rFor(i, n, 0)
#define fi first
#define se second

using namespace std;

using lint = long long;
using pii = pair<int, int>;
using pll = pair<lint, lint>;

int dx[2] = {0, 1};
int dy[2] = {1, 0};

int main() {
    int h, w, n;
    scanf("%d%d%d", &h, &w, &n);
    int c[h][w];
    vector<tuple<int, int, int>> tp;
    rep(i, h) rep(j, w) {
        scanf("%d", &c[i][j]);
        tp.emplace_back(c[i][j], i, j);
    }
    sort(tp.begin(), tp.end());
    int idx[h][w];
    rep(i, tp.size()) {
        auto [_, x, y] = tp[i];
        idx[x][y] = i;
    }
    vector<pii> gr[h * w];
    rep(i, tp.size()) {
        if (i < (int)tp.size() - 1) gr[i].emplace_back(i + 1, 0);
        auto [_, x, y] = tp[i];
        rep(k, 2) {
            int nx = x + dx[k], ny = y + dy[k];
            if (nx < h && ny < w) {
                if (c[x][y] < c[nx][ny]) gr[i].emplace_back(idx[nx][ny], 1);
                if (c[x][y] > c[nx][ny]) gr[idx[nx][ny]].emplace_back(i, 1);
            }
        }
    }
    int dp[h * w];
    memset(dp, 0, sizeof(dp));
    rep(i, h * w) for (auto [j, w] : gr[i]) chmax(dp[j], dp[i] + w);
    printf("%d\n", dp[h * w - 1] + 1);
}
0