結果

問題 No.1660 Matrix Exponentiation
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-06-18 13:38:24
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 1,059 bytes
コンパイル時間 2,419 ms
コンパイル使用メモリ 209,716 KB
実行使用メモリ 10,188 KB
最終ジャッジ日時 2024-06-18 13:38:29
合計ジャッジ時間 4,502 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 5 ms
7,476 KB
testcase_10 AC 6 ms
7,352 KB
testcase_11 AC 6 ms
6,960 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 33 ms
7,384 KB
testcase_20 AC 22 ms
7,140 KB
testcase_21 AC 29 ms
6,944 KB
testcase_22 AC 5 ms
6,940 KB
testcase_23 AC 15 ms
6,940 KB
testcase_24 AC 51 ms
10,188 KB
testcase_25 AC 23 ms
7,744 KB
testcase_26 AC 51 ms
10,060 KB
testcase_27 AC 28 ms
8,960 KB
testcase_28 AC 41 ms
8,692 KB
testcase_29 AC 37 ms
9,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
void fast_io() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);
}

int main() {
    fast_io();
    int n, k;
    cin >> n >> k;
    vector<vector<int>> g(n);
    vector<int> in_deg(n);
    for (int i = 0; i < k; i++) {
        int r, c;
        cin >> r >> c;
        g[r - 1].push_back(c - 1);
        in_deg[c - 1]++;
    }
    vector<int> top;
    deque<int> q;
    for (int i = 0; i < n; i++) {
        if (in_deg[i] == 0) {
            q.push_back(i);
        }
    }
    while (!q.empty()) {
        int v = q.front();
        q.pop_front();
        top.push_back(v);
        for (int u : g[v]) {
            in_deg[u]--;
            if (in_deg[u] == 0) {
                q.push_back(u);
            }
        }
    }
    if (top.size() < n) {
        cout << -1 << endl;
        return 0;
    }
    vector<int> dp(n);
    for (int v : top) {
        for (int u : g[v]) {
            dp[u] = max(dp[u], dp[v] + 1);
        }
    }
    cout << *max_element(dp.begin(), dp.end()) + 1 << endl;
}
0