結果

問題 No.1111 コード進行
ユーザー betrue12betrue12
提出日時 2020-07-10 21:39:32
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 222 ms / 2,000 ms
コード長 768 bytes
コンパイル時間 2,344 ms
コンパイル使用メモリ 206,080 KB
実行使用メモリ 215,040 KB
最終ジャッジ日時 2024-10-11 08:25:24
合計ジャッジ時間 5,227 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 3 ms
5,248 KB
testcase_03 AC 3 ms
5,248 KB
testcase_04 AC 3 ms
5,248 KB
testcase_05 AC 3 ms
5,248 KB
testcase_06 AC 5 ms
5,248 KB
testcase_07 AC 5 ms
5,248 KB
testcase_08 AC 4 ms
5,248 KB
testcase_09 AC 4 ms
5,248 KB
testcase_10 AC 5 ms
5,248 KB
testcase_11 AC 4 ms
5,248 KB
testcase_12 AC 5 ms
5,248 KB
testcase_13 AC 3 ms
5,248 KB
testcase_14 AC 6 ms
5,248 KB
testcase_15 AC 4 ms
5,248 KB
testcase_16 AC 6 ms
5,760 KB
testcase_17 AC 4 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 3 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 5 ms
5,504 KB
testcase_23 AC 5 ms
5,248 KB
testcase_24 AC 4 ms
5,248 KB
testcase_25 AC 9 ms
7,168 KB
testcase_26 AC 5 ms
5,376 KB
testcase_27 AC 3 ms
5,248 KB
testcase_28 AC 18 ms
7,040 KB
testcase_29 AC 23 ms
17,280 KB
testcase_30 AC 26 ms
13,184 KB
testcase_31 AC 4 ms
5,248 KB
testcase_32 AC 36 ms
18,432 KB
testcase_33 AC 31 ms
12,416 KB
testcase_34 AC 14 ms
6,656 KB
testcase_35 AC 21 ms
9,600 KB
testcase_36 AC 151 ms
105,984 KB
testcase_37 AC 104 ms
88,192 KB
testcase_38 AC 55 ms
44,800 KB
testcase_39 AC 56 ms
26,496 KB
testcase_40 AC 123 ms
84,992 KB
testcase_41 AC 41 ms
26,240 KB
testcase_42 AC 119 ms
94,208 KB
testcase_43 AC 74 ms
53,248 KB
testcase_44 AC 37 ms
31,232 KB
testcase_45 AC 64 ms
49,408 KB
testcase_46 AC 19 ms
18,688 KB
testcase_47 AC 123 ms
19,328 KB
testcase_48 AC 222 ms
215,040 KB
testcase_49 AC 166 ms
161,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

const int64_t MOD = 1e9+7;
void add(int64_t& a, int64_t b){
    a = (a+b) % MOD;
}
void mul(int64_t& a, int64_t b){
    a = a*b % MOD;
}

int main(){
    int N, M, K;
    cin >> N >> M >> K;
    vector<vector<pair<int, int>>> A(300);
    for(int i=0; i<M; i++){
        int a, b, c;
        cin >> a >> b >> c;
        A[a-1].emplace_back(b-1, c);
    }

    static int64_t dp[300][300][301];
    for(int j=0; j<300; j++) dp[0][j][0] = 1;
    for(int i=0; i<N-1; i++) for(int j=0; j<300; j++) for(int k=0; k<=K; k++) for(auto& [b, c] : A[j]){
        if(k+c <= K) add(dp[i+1][b][k+c], dp[i][j][k]);
    }
    int64_t ans = 0;
    for(int j=0; j<300; j++) add(ans, dp[N-1][j][K]);
    cout << ans << endl;
    return 0;
}
0