結果

問題 No.1111 コード進行
ユーザー umezoumezo
提出日時 2020-07-10 23:12:04
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 832 bytes
コンパイル時間 2,107 ms
コンパイル使用メモリ 205,760 KB
実行使用メモリ 216,472 KB
最終ジャッジ日時 2024-10-11 18:15:36
合計ジャッジ時間 4,315 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 4 ms
6,272 KB
testcase_06 AC 5 ms
8,152 KB
testcase_07 AC 5 ms
7,424 KB
testcase_08 AC 3 ms
5,248 KB
testcase_09 WA -
testcase_10 AC 6 ms
9,892 KB
testcase_11 AC 3 ms
5,248 KB
testcase_12 AC 5 ms
8,052 KB
testcase_13 AC 4 ms
6,912 KB
testcase_14 WA -
testcase_15 AC 3 ms
5,248 KB
testcase_16 AC 5 ms
8,832 KB
testcase_17 AC 6 ms
10,352 KB
testcase_18 AC 3 ms
5,248 KB
testcase_19 AC 3 ms
5,248 KB
testcase_20 AC 4 ms
5,760 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 7 ms
12,416 KB
testcase_23 AC 5 ms
6,528 KB
testcase_24 AC 6 ms
7,424 KB
testcase_25 AC 8 ms
11,768 KB
testcase_26 AC 6 ms
7,760 KB
testcase_27 AC 3 ms
5,248 KB
testcase_28 AC 50 ms
109,696 KB
testcase_29 AC 22 ms
46,720 KB
testcase_30 AC 36 ms
73,728 KB
testcase_31 AC 8 ms
15,360 KB
testcase_32 AC 39 ms
65,664 KB
testcase_33 AC 32 ms
44,200 KB
testcase_34 AC 33 ms
79,360 KB
testcase_35 AC 44 ms
100,624 KB
testcase_36 AC 72 ms
108,288 KB
testcase_37 AC 22 ms
28,336 KB
testcase_38 AC 17 ms
21,888 KB
testcase_39 AC 50 ms
72,704 KB
testcase_40 AC 61 ms
99,156 KB
testcase_41 AC 56 ms
121,088 KB
testcase_42 AC 36 ms
50,532 KB
testcase_43 AC 33 ms
44,544 KB
testcase_44 AC 15 ms
25,308 KB
testcase_45 AC 37 ms
74,208 KB
testcase_46 AC 4 ms
5,248 KB
testcase_47 AC 181 ms
216,472 KB
testcase_48 AC 3 ms
5,248 KB
testcase_49 AC 4 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define ALL(v) v.begin(), v.end()
typedef long long ll;

#include <bits/stdc++.h>
using namespace std;

const ll MOD=1e9+7;

int main(){
  ll n,m,K;
  cin>>n>>m>>K;
  
  ll dp[n+1][301][K+1];
  rep(i,n+1){
    rep(j,301){
      rep(k,K+1) dp[i][j][k]=0;
    }
  }
    
  vector<pair<ll,ll>> A[301];
  ll p,q,c;
  rep(i,m){
    cin>>p>>q>>c;
    A[p].push_back({q,c});
    dp[2][q][c]++;
  } 
  
  for(int i=2;i<=n-1;i++){
    for(int j=1;j<=300;j++){
      for(int k=0;k<=K;k++){
        for(auto x:A[j]){
          if(k+x.second>K) continue;
          dp[i+1][x.first][k+x.second]=(dp[i+1][x.first][k+x.second]+dp[i][j][k])%MOD;
        }
      }
    }
  }
        
  ll ans=0;
  for(int j=1;j<=300;j++){
    ans=(ans+dp[n][j][K])%MOD;
  }
  
  cout<<ans<<endl;
  
  return 0;
}
0