結果

問題 No.1111 コード進行
ユーザー erbowlerbowl
提出日時 2020-07-10 21:55:45
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 223 ms / 2,000 ms
コード長 1,004 bytes
コンパイル時間 2,555 ms
コンパイル使用メモリ 212,844 KB
実行使用メモリ 219,136 KB
最終ジャッジ日時 2024-10-11 09:04:13
合計ジャッジ時間 5,107 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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,820 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 5 ms
6,820 KB
testcase_06 AC 7 ms
8,448 KB
testcase_07 AC 7 ms
7,680 KB
testcase_08 AC 4 ms
6,816 KB
testcase_09 AC 5 ms
7,040 KB
testcase_10 AC 8 ms
10,112 KB
testcase_11 AC 3 ms
6,820 KB
testcase_12 AC 8 ms
8,448 KB
testcase_13 AC 5 ms
7,040 KB
testcase_14 AC 9 ms
10,880 KB
testcase_15 AC 3 ms
6,820 KB
testcase_16 AC 8 ms
9,088 KB
testcase_17 AC 8 ms
10,496 KB
testcase_18 AC 3 ms
6,820 KB
testcase_19 AC 3 ms
6,816 KB
testcase_20 AC 5 ms
6,816 KB
testcase_21 AC 3 ms
6,816 KB
testcase_22 AC 10 ms
12,800 KB
testcase_23 AC 5 ms
6,816 KB
testcase_24 AC 6 ms
7,680 KB
testcase_25 AC 12 ms
12,032 KB
testcase_26 AC 7 ms
7,936 KB
testcase_27 AC 4 ms
6,816 KB
testcase_28 AC 85 ms
111,360 KB
testcase_29 AC 40 ms
48,256 KB
testcase_30 AC 61 ms
74,880 KB
testcase_31 AC 12 ms
15,872 KB
testcase_32 AC 64 ms
67,712 KB
testcase_33 AC 44 ms
45,184 KB
testcase_34 AC 62 ms
81,280 KB
testcase_35 AC 82 ms
103,552 KB
testcase_36 AC 112 ms
110,208 KB
testcase_37 AC 35 ms
29,824 KB
testcase_38 AC 26 ms
22,784 KB
testcase_39 AC 75 ms
73,984 KB
testcase_40 AC 99 ms
101,376 KB
testcase_41 AC 96 ms
123,648 KB
testcase_42 AC 57 ms
52,096 KB
testcase_43 AC 49 ms
45,952 KB
testcase_44 AC 26 ms
26,368 KB
testcase_45 AC 68 ms
76,288 KB
testcase_46 AC 10 ms
8,448 KB
testcase_47 AC 223 ms
219,136 KB
testcase_48 AC 10 ms
8,448 KB
testcase_49 AC 11 ms
8,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

typedef long long ll;
typedef long double ld;
#include <bits/stdc++.h>
using namespace std;
const ll MOD = 1e9+7;
int main() {
    ll n,m,k;
    std::cin >> n>>m>>k;
    vector<vector<pair<ll,ll>>> edges(300);
    for (int i = 0; i < m; i++) {
        ll p,q,c;
        std::cin >> p>>q>>c;
        p--;q--;
        edges[p].push_back({q,c});
    }
    vector<vector<vector<ll>>> dp(n+1,vector<vector<ll>>(300,vector<ll>(k+1,0)));
    for (int i = 0; i < 300; i++) {
        dp[0][i][0] = 1;
    }
    
    for (int i = 0; i < n-1; i++) {
        for (int j = 0; j < 300; j++) {
            for (auto e : edges[j]) {
                for (int ii = 0; ii <= k; ii++) {
                    if(ii-e.second>=0) dp[i+1][e.first][ii] += dp[i][j][ii-e.second];
                    dp[i+1][e.first][ii] %= MOD;
                }
            }
        }
    }
    
    ll ans = 0;
    for (int i = 0; i < 300; i++) {
        ans += dp[n-1][i][k];
        ans %= MOD;
    }
    
    std::cout << ans << std::endl;
}
0