結果

問題 No.1111 コード進行
ユーザー face4face4
提出日時 2020-07-16 12:44:16
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 665 bytes
コンパイル時間 776 ms
コンパイル使用メモリ 71,324 KB
実行使用メモリ 109,696 KB
最終ジャッジ日時 2024-11-24 13:16:56
合計ジャッジ時間 2,783 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,824 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 3 ms
6,816 KB
testcase_07 AC 3 ms
6,820 KB
testcase_08 AC 3 ms
6,816 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 3 ms
6,816 KB
testcase_12 AC 3 ms
6,816 KB
testcase_13 AC 3 ms
6,820 KB
testcase_14 AC 4 ms
6,816 KB
testcase_15 AC 2 ms
6,820 KB
testcase_16 AC 3 ms
6,820 KB
testcase_17 AC 3 ms
6,820 KB
testcase_18 AC 2 ms
6,816 KB
testcase_19 AC 2 ms
6,816 KB
testcase_20 AC 2 ms
6,816 KB
testcase_21 AC 2 ms
6,816 KB
testcase_22 AC 3 ms
6,816 KB
testcase_23 AC 2 ms
6,816 KB
testcase_24 AC 2 ms
6,816 KB
testcase_25 AC 5 ms
6,820 KB
testcase_26 AC 4 ms
6,816 KB
testcase_27 AC 2 ms
6,816 KB
testcase_28 AC 6 ms
6,820 KB
testcase_29 AC 14 ms
15,104 KB
testcase_30 AC 15 ms
11,392 KB
testcase_31 AC 3 ms
6,816 KB
testcase_32 AC 26 ms
16,256 KB
testcase_33 AC 21 ms
10,624 KB
testcase_34 AC 4 ms
6,816 KB
testcase_35 AC 7 ms
8,704 KB
testcase_36 AC 86 ms
63,104 KB
testcase_37 AC 59 ms
57,344 KB
testcase_38 AC 37 ms
33,280 KB
testcase_39 AC 36 ms
20,480 KB
testcase_40 AC 81 ms
60,672 KB
testcase_41 AC 21 ms
21,504 KB
testcase_42 AC 68 ms
61,160 KB
testcase_43 AC 46 ms
36,096 KB
testcase_44 AC 26 ms
25,728 KB
testcase_45 AC 42 ms
38,144 KB
testcase_46 AC 12 ms
11,776 KB
testcase_47 AC 78 ms
12,032 KB
testcase_48 AC 114 ms
109,696 KB
testcase_49 AC 104 ms
102,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
using namespace std;

int dp[300][301][301] = {}; // MLE?
const int mod = 1000000007;

int main(){
    int n, m, k;
    cin >> n >> m >> k;
    vector<int> p(m), q(m), c(m);
    while(m--){
        cin >> p[m] >> q[m] >> c[m];
    }
    for(int j = 1; j <= 300; j++)   dp[0][j][0] = 1;
    for(int i = 0; i+1 < n; i++){
        for(int j = 0; j < p.size(); j++){
            for(int x = 0; x+c[j] <= k; x++){
                (dp[i+1][q[j]][x+c[j]] += dp[i][p[j]][x]) %= mod;
            }
        }
    }
    int ans = 0;
    for(int j = 1; j <= 300; j++)   (ans += dp[n-1][j][k]) %= mod;
    cout << ans << endl;
    return 0;
}
0