結果

問題 No.1111 コード進行
ユーザー どららどらら
提出日時 2020-07-10 22:45:09
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 331 ms / 2,000 ms
コード長 923 bytes
コンパイル時間 1,919 ms
コンパイル使用メモリ 172,708 KB
実行使用メモリ 218,368 KB
最終ジャッジ日時 2024-10-11 10:06:05
合計ジャッジ時間 5,244 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 4 ms
6,816 KB
testcase_06 AC 6 ms
7,168 KB
testcase_07 AC 7 ms
6,912 KB
testcase_08 AC 3 ms
6,820 KB
testcase_09 AC 5 ms
6,820 KB
testcase_10 AC 9 ms
8,960 KB
testcase_11 AC 4 ms
6,820 KB
testcase_12 AC 8 ms
7,168 KB
testcase_13 AC 6 ms
6,816 KB
testcase_14 AC 11 ms
9,472 KB
testcase_15 AC 3 ms
6,816 KB
testcase_16 AC 9 ms
7,808 KB
testcase_17 AC 8 ms
9,472 KB
testcase_18 AC 2 ms
6,816 KB
testcase_19 AC 2 ms
6,816 KB
testcase_20 AC 4 ms
6,816 KB
testcase_21 AC 2 ms
6,820 KB
testcase_22 AC 11 ms
11,392 KB
testcase_23 AC 5 ms
6,816 KB
testcase_24 AC 6 ms
6,816 KB
testcase_25 AC 13 ms
10,880 KB
testcase_26 AC 8 ms
7,424 KB
testcase_27 AC 3 ms
6,816 KB
testcase_28 AC 116 ms
110,080 KB
testcase_29 AC 50 ms
47,488 KB
testcase_30 AC 86 ms
73,856 KB
testcase_31 AC 15 ms
14,592 KB
testcase_32 AC 85 ms
66,688 KB
testcase_33 AC 65 ms
43,904 KB
testcase_34 AC 83 ms
79,872 KB
testcase_35 AC 110 ms
102,272 KB
testcase_36 AC 160 ms
109,312 KB
testcase_37 AC 41 ms
29,056 KB
testcase_38 AC 33 ms
22,272 KB
testcase_39 AC 111 ms
72,704 KB
testcase_40 AC 142 ms
100,224 KB
testcase_41 AC 136 ms
122,368 KB
testcase_42 AC 73 ms
51,200 KB
testcase_43 AC 69 ms
44,800 KB
testcase_44 AC 31 ms
25,344 KB
testcase_45 AC 91 ms
74,880 KB
testcase_46 AC 5 ms
6,820 KB
testcase_47 AC 331 ms
218,368 KB
testcase_48 AC 5 ms
6,816 KB
testcase_49 AC 5 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define REP(i,a,n) for(int i=(a); i<(int)(n); i++)
#define rep(i,n) REP(i,0,n)
#define FOR(it,c) for(__typeof((c).begin()) it=(c).begin(); it!=(c).end(); ++it)
#define ALLOF(c) (c).begin(), (c).end()
typedef long long ll;
typedef unsigned long long ull;

static const ll MOD = 1000000007;

ll dp[305][305][305];

int main(){
  int N, M, K;
  cin >> N >> M >> K;

  vector<vector<int>> v;
  rep(i,M){
    int p, q, c;
    cin >> p >> q >> c;
    v.push_back({p,q,c});
  }

  rep(i,305) dp[0][0][i] = 1;
  
  rep(i,N-1){
    rep(j,K+1){
      rep(k,v.size()){
        int p = v[k][0];
        int q = v[k][1];
        int c = v[k][2];
        if(j+c <= K){
          dp[i+1][j+c][q] += dp[i][j][p];
          dp[i+1][j+c][q] %= MOD;
        }
      }
    }
  }
  
  ll ret = 0;
  rep(i,305){
    ret += dp[N-1][K][i];
    ret %= MOD;
  }
  cout << ret << endl;
  
  return 0;
}

0