結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 4 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 3 ms
5,376 KB
testcase_14 AC 4 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 4 ms
5,376 KB
testcase_17 AC 3 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 4 ms
5,376 KB
testcase_23 AC 3 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 6 ms
6,272 KB
testcase_26 AC 4 ms
5,376 KB
testcase_27 AC 3 ms
5,376 KB
testcase_28 AC 5 ms
6,400 KB
testcase_29 AC 16 ms
15,232 KB
testcase_30 AC 15 ms
11,264 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 26 ms
16,256 KB
testcase_33 AC 23 ms
10,368 KB
testcase_34 AC 5 ms
5,888 KB
testcase_35 AC 8 ms
8,576 KB
testcase_36 AC 91 ms
62,976 KB
testcase_37 AC 65 ms
57,344 KB
testcase_38 AC 39 ms
33,280 KB
testcase_39 AC 41 ms
20,480 KB
testcase_40 AC 84 ms
60,544 KB
testcase_41 AC 24 ms
21,504 KB
testcase_42 AC 77 ms
60,928 KB
testcase_43 AC 50 ms
36,096 KB
testcase_44 AC 27 ms
25,856 KB
testcase_45 AC 43 ms
38,144 KB
testcase_46 AC 11 ms
11,648 KB
testcase_47 AC 85 ms
12,032 KB
testcase_48 AC 116 ms
109,696 KB
testcase_49 AC 106 ms
102,144 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