結果

問題 No.2639 Longest Increasing Walk
ユーザー InTheBloomInTheBloom
提出日時 2024-05-29 06:44:40
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 195 ms / 2,000 ms
コード長 1,660 bytes
コンパイル時間 6,853 ms
コンパイル使用メモリ 111,180 KB
実行使用メモリ 41,408 KB
最終ジャッジ日時 2024-05-29 06:44:52
合計ジャッジ時間 7,460 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 124 ms
12,212 KB
testcase_05 AC 172 ms
20,068 KB
testcase_06 AC 144 ms
19,876 KB
testcase_07 AC 195 ms
41,408 KB
testcase_08 AC 145 ms
19,948 KB
testcase_09 AC 177 ms
20,232 KB
testcase_10 AC 90 ms
11,848 KB
testcase_11 AC 81 ms
10,960 KB
testcase_12 AC 15 ms
6,944 KB
testcase_13 AC 97 ms
12,532 KB
testcase_14 AC 70 ms
8,648 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 4 ms
6,940 KB
testcase_17 AC 54 ms
8,576 KB
testcase_18 AC 66 ms
9,632 KB
testcase_19 AC 19 ms
6,940 KB
testcase_20 AC 42 ms
7,168 KB
testcase_21 AC 80 ms
10,792 KB
testcase_22 AC 30 ms
6,940 KB
testcase_23 AC 3 ms
6,940 KB
testcase_24 AC 3 ms
6,944 KB
testcase_25 AC 3 ms
6,944 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 3 ms
6,940 KB
testcase_28 AC 2 ms
6,944 KB
testcase_29 AC 2 ms
6,944 KB
testcase_30 AC 2 ms
6,940 KB
testcase_31 AC 2 ms
6,944 KB
testcase_32 AC 2 ms
6,940 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