結果

問題 No.2639 Longest Increasing Walk
ユーザー InTheBloomInTheBloom
提出日時 2024-05-29 06:44:40
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 197 ms / 2,000 ms
コード長 1,660 bytes
コンパイル時間 4,291 ms
コンパイル使用メモリ 110,552 KB
実行使用メモリ 41,452 KB
最終ジャッジ日時 2024-12-20 20:58:52
合計ジャッジ時間 8,163 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 124 ms
12,212 KB
testcase_05 AC 142 ms
19,940 KB
testcase_06 AC 144 ms
19,748 KB
testcase_07 AC 197 ms
41,452 KB
testcase_08 AC 144 ms
19,912 KB
testcase_09 AC 171 ms
19,976 KB
testcase_10 AC 91 ms
11,856 KB
testcase_11 AC 81 ms
10,956 KB
testcase_12 AC 15 ms
6,820 KB
testcase_13 AC 95 ms
12,536 KB
testcase_14 AC 61 ms
8,644 KB
testcase_15 AC 3 ms
6,820 KB
testcase_16 AC 4 ms
6,820 KB
testcase_17 AC 54 ms
8,580 KB
testcase_18 AC 68 ms
9,756 KB
testcase_19 AC 20 ms
6,816 KB
testcase_20 AC 41 ms
7,296 KB
testcase_21 AC 82 ms
10,916 KB
testcase_22 AC 31 ms
6,820 KB
testcase_23 AC 3 ms
6,820 KB
testcase_24 AC 2 ms
6,816 KB
testcase_25 AC 3 ms
6,816 KB
testcase_26 AC 2 ms
6,816 KB
testcase_27 AC 3 ms
6,820 KB
testcase_28 AC 2 ms
6,816 KB
testcase_29 AC 2 ms
6,820 KB
testcase_30 AC 2 ms
6,820 KB
testcase_31 AC 2 ms
6,816 KB
testcase_32 AC 2 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>

using namespace std;

vector<int> topological_sort (vector<vector<int>>& graph) {
    vector<int> res(0);
    vector<bool> vis(graph.size(), false);

    auto dfs = [&](auto self, int pos) -> void {
        vis[pos] = true;
        for (auto to: graph[pos]) {
            if (vis[to]) continue;
            self(self, to);
        }

        res.push_back(pos);
    };

    for (int i = 0; i < graph.size(); i++) if (!vis[i]) dfs(dfs, i);
    reverse(res.begin(), res.end());

    return res;
}

int main () {
    int H, W; cin >> H >> W;
    vector<vector<int>> A(H, vector<int>(W));
    for (int i = 0; i < H; i++) {
        for (int j = 0; j < W; j++) {
            cin >> A[i][j];
        }
    }

    const int dxy[][2] = {
        {1, 0},
        {-1, 0},
        {0, 1},
        {0, -1},
    };

    auto is_in = [&](int y, int x) {
        return 0 <= y && y < H && 0 <= x && x < W;
    };

    vector<vector<int>> graph(H * W);

    for (int i = 0; i < H; i++) {
        for (int j = 0; j < W; j++) {
            for (auto d: dxy) {
                int ni = i + d[0], nj = j + d[1];
                if (!is_in(ni, nj)) continue;

                if (A[i][j] < A[ni][nj]) {
                    graph[i * W + j].push_back(ni * W + nj);
                }
            }
        }
    }

    auto update_ord = topological_sort(graph);

    vector<int> score(H * W, 1);
    for (auto v: update_ord) {
        for (auto nex: graph[v]) {
            score[nex] = max(score[nex], score[v] + 1);
        }
    }

    int ans = 0;
    for (auto v: score) ans = max(ans, v);

    cout << ans << "\n";
}
0