結果

問題 No.1111 コード進行
ユーザー noritakenoritake
提出日時 2020-07-11 11:15:32
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,170 ms / 2,000 ms
コード長 1,267 bytes
コンパイル時間 1,772 ms
コンパイル使用メモリ 185,408 KB
実行使用メモリ 116,224 KB
最終ジャッジ日時 2024-10-12 20:11:45
合計ジャッジ時間 15,361 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
5,504 KB
testcase_01 AC 5 ms
5,248 KB
testcase_02 AC 4 ms
5,248 KB
testcase_03 AC 4 ms
5,248 KB
testcase_04 AC 4 ms
5,248 KB
testcase_05 AC 5 ms
5,248 KB
testcase_06 AC 22 ms
7,040 KB
testcase_07 AC 42 ms
8,832 KB
testcase_08 AC 52 ms
8,448 KB
testcase_09 AC 13 ms
5,632 KB
testcase_10 AC 37 ms
10,752 KB
testcase_11 AC 28 ms
7,808 KB
testcase_12 AC 30 ms
6,912 KB
testcase_13 AC 15 ms
6,656 KB
testcase_14 AC 50 ms
8,448 KB
testcase_15 AC 37 ms
9,984 KB
testcase_16 AC 34 ms
7,424 KB
testcase_17 AC 28 ms
10,752 KB
testcase_18 AC 19 ms
8,448 KB
testcase_19 AC 4 ms
5,248 KB
testcase_20 AC 8 ms
5,632 KB
testcase_21 AC 29 ms
9,344 KB
testcase_22 AC 30 ms
10,368 KB
testcase_23 AC 27 ms
8,192 KB
testcase_24 AC 19 ms
7,296 KB
testcase_25 AC 80 ms
10,752 KB
testcase_26 AC 48 ms
9,600 KB
testcase_27 AC 8 ms
5,248 KB
testcase_28 AC 241 ms
70,912 KB
testcase_29 AC 264 ms
67,968 KB
testcase_30 AC 238 ms
47,744 KB
testcase_31 AC 34 ms
12,928 KB
testcase_32 AC 637 ms
88,192 KB
testcase_33 AC 310 ms
31,616 KB
testcase_34 AC 206 ms
60,032 KB
testcase_35 AC 358 ms
102,784 KB
testcase_36 AC 632 ms
71,680 KB
testcase_37 AC 604 ms
66,432 KB
testcase_38 AC 491 ms
48,640 KB
testcase_39 AC 440 ms
45,440 KB
testcase_40 AC 627 ms
75,520 KB
testcase_41 AC 323 ms
82,944 KB
testcase_42 AC 614 ms
70,912 KB
testcase_43 AC 473 ms
46,592 KB
testcase_44 AC 228 ms
42,112 KB
testcase_45 AC 363 ms
69,888 KB
testcase_46 AC 1,088 ms
116,224 KB
testcase_47 AC 1,112 ms
116,224 KB
testcase_48 AC 1,170 ms
116,224 KB
testcase_49 AC 1,162 ms
116,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
using namespace std;
typedef long long ll;

int main() {
    int N, M, K;
    cin >> N >> M >> K;

    map<int, vector<pair<int, int>>> G;
    rep(i, M) {
        int x, y, z;
        cin >> x >> y >> z;

        G[x].push_back(make_pair(y, z));
    }

    const int MAX = 305;
    const int MOD = 1000000007;

    vector<vector<vector<int>>> dp(N + 1, vector<vector<int>>(MAX, vector<int>(MAX)));
    for (auto x : G) {
        for (int i = 0; i < x.second.size(); i++) {
            dp[1][x.second[i].first][x.second[i].second]++;
        }
    }

    for (int i = 1; i < N; i++) {
        for (int j = 0; j < MAX; j++) {
            for (int k = 0; k < MAX; k++) {

                for (int l = 0; l < G[j].size(); l++) {
                    int nj = G[j][l].first;
                    int ncost = G[j][l].second;
                    
                    if (k + ncost > K) continue;

                    dp[i + 1][nj][k + ncost] += dp[i][j][k];
                    dp[i + 1][nj][k + ncost] %= MOD;
                }
            }
        }
    }

    int ans = 0;

    for (int x = 0; x < MAX; x++) {
        ans += dp[N - 1][x][K];
        ans %= MOD;
    }
    cout << ans << endl;
}
0