結果

問題 No.1112 冥界の音楽
ユーザー trineutrontrineutron
提出日時 2019-11-01 02:27:58
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 894 bytes
コンパイル時間 1,914 ms
コンパイル使用メモリ 178,272 KB
実行使用メモリ 50,176 KB
最終ジャッジ日時 2024-09-14 22:14:50
合計ジャッジ時間 5,036 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 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,940 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 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 85 ms
49,792 KB
testcase_15 AC 6 ms
6,940 KB
testcase_16 AC 15 ms
10,496 KB
testcase_17 AC 35 ms
20,352 KB
testcase_18 AC 44 ms
25,600 KB
testcase_19 AC 5 ms
6,940 KB
testcase_20 AC 42 ms
26,240 KB
testcase_21 AC 85 ms
50,176 KB
testcase_22 AC 26 ms
16,128 KB
testcase_23 AC 4 ms
6,940 KB
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
    const long mod = 1000000007;
    int k, m, n;
    cin >> k >> m >> n;
    vector<vector<int>> next(k * k);
    vector<vector<vector<long>>> dp(n - 1, vector<vector<long>>(k, vector<long>(k)));
    for (int i = 0; i < m; i++) {
        int p, q, r;
        cin >> p >> q >> r;
        p--; q--; r--;
        next.at(p * k + q).push_back(r);
        if (p == 0) dp[0][p][q] = 1;
    }
    for (int i = 1; i < n - 1; i++) {
        for (int p = 0; p < k; p++) {
            for (int q = 0; q < k; q++) {
                for (auto r : next.at(p * k + q)) {
                    dp[i][q][r] += dp[i - 1][p][q];
                    dp[i][q][r] %= mod;
                }
            }
        }
    }
    long ans = 0;
    for (int i = 0; i < k; i++) {
        ans += dp[n - 2][i][0];
        ans %= mod;
    }
    cout << ans << endl;
}
0