結果

問題 No.1111 コード進行
ユーザー yuji9511yuji9511
提出日時 2020-07-10 22:11:41
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 218 ms / 2,000 ms
コード長 1,338 bytes
コンパイル時間 2,246 ms
コンパイル使用メモリ 201,048 KB
実行使用メモリ 221,864 KB
最終ジャッジ日時 2024-10-11 09:27:30
合計ジャッジ時間 4,582 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 3 ms
6,820 KB
testcase_04 AC 3 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 4 ms
6,816 KB
testcase_07 AC 4 ms
6,816 KB
testcase_08 AC 4 ms
6,816 KB
testcase_09 AC 3 ms
6,816 KB
testcase_10 AC 4 ms
6,820 KB
testcase_11 AC 4 ms
6,820 KB
testcase_12 AC 4 ms
6,820 KB
testcase_13 AC 3 ms
6,820 KB
testcase_14 AC 5 ms
6,816 KB
testcase_15 AC 3 ms
6,820 KB
testcase_16 AC 5 ms
6,820 KB
testcase_17 AC 3 ms
6,816 KB
testcase_18 AC 3 ms
6,820 KB
testcase_19 AC 3 ms
6,820 KB
testcase_20 AC 2 ms
6,816 KB
testcase_21 AC 3 ms
6,820 KB
testcase_22 AC 4 ms
6,816 KB
testcase_23 AC 4 ms
6,816 KB
testcase_24 AC 3 ms
6,816 KB
testcase_25 AC 7 ms
8,396 KB
testcase_26 AC 5 ms
6,816 KB
testcase_27 AC 3 ms
6,816 KB
testcase_28 AC 7 ms
8,768 KB
testcase_29 AC 17 ms
17,152 KB
testcase_30 AC 18 ms
13,056 KB
testcase_31 AC 3 ms
6,816 KB
testcase_32 AC 29 ms
18,304 KB
testcase_33 AC 24 ms
12,288 KB
testcase_34 AC 6 ms
6,820 KB
testcase_35 AC 9 ms
9,728 KB
testcase_36 AC 135 ms
107,904 KB
testcase_37 AC 97 ms
89,344 KB
testcase_38 AC 51 ms
45,056 KB
testcase_39 AC 46 ms
26,496 KB
testcase_40 AC 106 ms
85,504 KB
testcase_41 AC 29 ms
26,368 KB
testcase_42 AC 109 ms
95,872 KB
testcase_43 AC 69 ms
54,400 KB
testcase_44 AC 33 ms
31,232 KB
testcase_45 AC 55 ms
49,664 KB
testcase_46 AC 18 ms
19,072 KB
testcase_47 AC 93 ms
19,840 KB
testcase_48 AC 218 ms
221,864 KB
testcase_49 AC 160 ms
163,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/*** author: yuji9511 ***/
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using lpair = pair<ll, ll>;
const ll MOD = 1e9+7;
const ll INF = 1e18;
#define rep(i,m,n) for(ll i=(m);i<(n);i++)
#define rrep(i,m,n) for(ll i=(m);i>=(n);i--)
#define printa(x,n) for(ll i=0;i<n;i++){cout<<(x[i])<<" \n"[i==n-1];};
void print() {}
template <class H,class... T>
void print(H&& h, T&&... t){cout<<h<<" \n"[sizeof...(t)==0];print(forward<T>(t)...);}
ll dp[310][310][310] = {};


void solve(){
    ll N,M,K;
    cin >> N >> M >> K;
    ll P[310], Q[310], C[310];
    ll dist[310][310] = {};
    rep(i,0,300){
        rep(j,0,300){
            if(i == j) dist[i][j] = 0;
            else dist[i][j] = INF;
        }
    }
    rep(i,0,M){
        cin >> P[i] >> Q[i] >> C[i];
        P[i]--; Q[i]--;
        dist[P[i]][Q[i]] = C[i];
    }

    
    rep(i,0,300){
        dp[0][i][0] = 1;
    }
    rep(n,0,N-1){
        rep(i,0,M){
            rep(k,0,K+1){
                if(k - C[i] >= 0){
                    dp[n+1][Q[i]][k] += dp[n][P[i]][k - C[i]];
                    dp[n+1][Q[i]][k] %= MOD;
                }
            }
        }
    }
    ll ans = 0;
    rep(i,0,300){
        ans += dp[N-1][i][K];
        ans %= MOD;
    }
    print(ans);

}

int main(){
    cin.tie(0);
    ios::sync_with_stdio(false);
    solve();
}
0