結果

問題 No.1111 コード進行
ユーザー 👑 NachiaNachia
提出日時 2020-10-24 19:04:04
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 294 ms / 2,000 ms
コード長 727 bytes
コンパイル時間 1,395 ms
コンパイル使用メモリ 168,292 KB
実行使用メモリ 215,296 KB
最終ジャッジ日時 2024-07-21 15:28:20
合計ジャッジ時間 4,481 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,272 KB
testcase_01 AC 4 ms
5,760 KB
testcase_02 AC 4 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 4 ms
5,376 KB
testcase_05 AC 5 ms
5,760 KB
testcase_06 AC 8 ms
9,088 KB
testcase_07 AC 12 ms
12,672 KB
testcase_08 AC 11 ms
11,904 KB
testcase_09 AC 3 ms
6,144 KB
testcase_10 AC 15 ms
16,128 KB
testcase_11 AC 8 ms
10,496 KB
testcase_12 AC 7 ms
9,216 KB
testcase_13 AC 5 ms
8,448 KB
testcase_14 AC 10 ms
11,904 KB
testcase_15 AC 13 ms
14,720 KB
testcase_16 AC 10 ms
9,728 KB
testcase_17 AC 16 ms
16,128 KB
testcase_18 AC 8 ms
11,776 KB
testcase_19 AC 4 ms
5,376 KB
testcase_20 AC 5 ms
6,272 KB
testcase_21 AC 10 ms
13,312 KB
testcase_22 AC 13 ms
15,360 KB
testcase_23 AC 8 ms
11,136 KB
testcase_24 AC 9 ms
9,728 KB
testcase_25 AC 10 ms
16,000 KB
testcase_26 AC 7 ms
14,080 KB
testcase_27 AC 3 ms
5,504 KB
testcase_28 AC 67 ms
129,792 KB
testcase_29 AC 40 ms
124,096 KB
testcase_30 AC 43 ms
86,016 KB
testcase_31 AC 10 ms
20,480 KB
testcase_32 AC 62 ms
162,176 KB
testcase_33 AC 36 ms
55,680 KB
testcase_34 AC 99 ms
109,184 KB
testcase_35 AC 71 ms
189,696 KB
testcase_36 AC 82 ms
131,200 KB
testcase_37 AC 39 ms
121,344 KB
testcase_38 AC 30 ms
87,424 KB
testcase_39 AC 56 ms
81,792 KB
testcase_40 AC 76 ms
138,240 KB
testcase_41 AC 71 ms
152,320 KB
testcase_42 AC 51 ms
129,792 KB
testcase_43 AC 40 ms
84,096 KB
testcase_44 AC 26 ms
75,392 KB
testcase_45 AC 54 ms
127,616 KB
testcase_46 AC 196 ms
215,156 KB
testcase_47 AC 294 ms
215,296 KB
testcase_48 AC 45 ms
214,980 KB
testcase_49 AC 45 ms
215,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

const ULL MOD = 1000000007;
int N, M, K;
ULL dp[300][300][301] = {};
ULL Ch[300][3];

int main() {
    cin >> N >> M >> K;
    rep(i, M) {
        rep(j, 3) cin >> Ch[i][j];
        Ch[i][0]--; Ch[i][1]--;
    }
    rep(i, 300) dp[0][i][0] = 1;

    rep(n, N - 1) rep(k, K + 1) {
        rep(m, M) {
            if (Ch[m][2] > k) continue;
            dp[n + 1][Ch[m][1]][k] += dp[n][Ch[m][0]][k - Ch[m][2]];
        }
        rep(s, 300) dp[n + 1][s][k] %= MOD;
    }

    ULL ans = 0;
    rep(i, 300) ans += dp[N - 1][i][K];
    ans %= MOD;
    cout << ans << endl;

    return 0;
}
0