結果

問題 No.1111 コード進行
ユーザー auauaauaua
提出日時 2020-07-10 22:17:58
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,082 bytes
コンパイル時間 1,940 ms
コンパイル使用メモリ 176,708 KB
実行使用メモリ 219,904 KB
最終ジャッジ日時 2024-10-11 09:34:50
合計ジャッジ時間 5,107 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 WA -
testcase_04 AC 2 ms
5,248 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 6 ms
7,680 KB
testcase_08 AC 3 ms
5,248 KB
testcase_09 WA -
testcase_10 AC 8 ms
10,112 KB
testcase_11 AC 4 ms
5,248 KB
testcase_12 WA -
testcase_13 AC 5 ms
7,040 KB
testcase_14 WA -
testcase_15 AC 4 ms
5,248 KB
testcase_16 AC 8 ms
9,216 KB
testcase_17 AC 8 ms
10,496 KB
testcase_18 AC 3 ms
5,248 KB
testcase_19 AC 3 ms
5,248 KB
testcase_20 AC 5 ms
6,144 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 10 ms
12,928 KB
testcase_23 AC 5 ms
6,656 KB
testcase_24 AC 5 ms
7,680 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 3 ms
5,248 KB
testcase_28 AC 86 ms
111,872 KB
testcase_29 AC 42 ms
48,256 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 63 ms
81,536 KB
testcase_35 AC 83 ms
103,936 KB
testcase_36 AC 181 ms
110,336 KB
testcase_37 AC 42 ms
29,952 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 107 ms
124,032 KB
testcase_42 AC 74 ms
52,224 KB
testcase_43 WA -
testcase_44 AC 28 ms
26,496 KB
testcase_45 AC 76 ms
76,544 KB
testcase_46 AC 10 ms
8,448 KB
testcase_47 AC 263 ms
219,904 KB
testcase_48 AC 11 ms
8,448 KB
testcase_49 AC 11 ms
8,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define int long long
#define REP(i,m,n) for(int i=(m);i<(n);i++)
#define rep(i,n) REP(i,0,n)
#define pb push_back
#define all(a) a.begin(),a.end()
#define rall(c) (c).rbegin(),(c).rend()
#define mp make_pair
#define endl '\n'
typedef long long ll;
typedef pair<ll,ll> pll;
typedef long double ld;
const ll inf=1e9+7;
const ll mod=1e9+7;
signed main(){
    ll n,m,k;cin>>n>>m>>k;
    vector<vector<vector<ll> > >dp(n+1,vector<vector<ll> >(301,vector<ll>(k+1)));
    rep(i,n){
        dp[0][i][0]=1;
    }
    vector<pair<pll,ll> >a(m);
    rep(i,m){
        ll p,q,c;cin>>p>>q>>c;
        p--;
        q--;
        a[i]=mp(mp(p,q),c);
    }
    rep(i,n-1){
        rep(j,k+1){
            rep(l,m){
                ll p=a[l].first.first;
                ll q=a[l].first.second;
                ll c=a[l].second;
                if(j+c>k)continue;
                dp[i+1][q][j+c]=(dp[i+1][q][j+c]+dp[i][p][j])%inf;
            }
        }
    }
    ll ans=0;
    rep(i,n){
        ans=(ans+dp[n-1][i][k])%inf;
    }
    cout<<ans<<endl;
}
0