結果

問題 No.1111 コード進行
ユーザー kk
提出日時 2020-09-04 23:16:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 442 ms / 2,000 ms
コード長 900 bytes
コンパイル時間 1,832 ms
コンパイル使用メモリ 205,168 KB
実行使用メモリ 215,808 KB
最終ジャッジ日時 2024-11-26 21:00:03
合計ジャッジ時間 7,938 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
6,272 KB
testcase_01 AC 4 ms
5,632 KB
testcase_02 AC 4 ms
5,248 KB
testcase_03 AC 4 ms
5,248 KB
testcase_04 AC 3 ms
5,248 KB
testcase_05 AC 6 ms
5,632 KB
testcase_06 AC 12 ms
9,088 KB
testcase_07 AC 16 ms
12,672 KB
testcase_08 AC 14 ms
11,904 KB
testcase_09 AC 7 ms
6,272 KB
testcase_10 AC 21 ms
16,256 KB
testcase_11 AC 11 ms
10,496 KB
testcase_12 AC 11 ms
9,088 KB
testcase_13 AC 9 ms
8,320 KB
testcase_14 AC 16 ms
12,032 KB
testcase_15 AC 15 ms
14,848 KB
testcase_16 AC 13 ms
9,856 KB
testcase_17 AC 21 ms
16,256 KB
testcase_18 AC 12 ms
11,904 KB
testcase_19 AC 4 ms
5,248 KB
testcase_20 AC 6 ms
6,400 KB
testcase_21 AC 14 ms
13,312 KB
testcase_22 AC 21 ms
15,488 KB
testcase_23 AC 13 ms
11,264 KB
testcase_24 AC 13 ms
9,728 KB
testcase_25 AC 24 ms
16,128 KB
testcase_26 AC 17 ms
13,952 KB
testcase_27 AC 5 ms
5,504 KB
testcase_28 AC 213 ms
130,048 KB
testcase_29 AC 176 ms
124,416 KB
testcase_30 AC 146 ms
86,272 KB
testcase_31 AC 27 ms
20,352 KB
testcase_32 AC 243 ms
162,816 KB
testcase_33 AC 101 ms
55,808 KB
testcase_34 AC 178 ms
109,696 KB
testcase_35 AC 280 ms
190,208 KB
testcase_36 AC 237 ms
131,456 KB
testcase_37 AC 173 ms
121,728 KB
testcase_38 AC 129 ms
87,552 KB
testcase_39 AC 151 ms
82,048 KB
testcase_40 AC 232 ms
138,624 KB
testcase_41 AC 254 ms
152,832 KB
testcase_42 AC 204 ms
130,048 KB
testcase_43 AC 141 ms
84,096 KB
testcase_44 AC 108 ms
75,648 KB
testcase_45 AC 201 ms
128,000 KB
testcase_46 AC 289 ms
215,552 KB
testcase_47 AC 442 ms
215,808 KB
testcase_48 AC 295 ms
215,552 KB
testcase_49 AC 292 ms
215,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#define REP(i,n) for(int i=0; i<(int)(n); i++)
#define FOR(i,b,e) for (int i=(int)(b); i<(int)(e); i++)
#define ALL(x) (x).begin(), (x).end()

const double PI = acos(-1);
const long long MOD = 1e9 + 7;

int n, m, K;
vector<pair<int, int> > edges[301];
long long dp[301][301][301];

int main() {
  ios_base::sync_with_stdio(0);
  cin.tie(0);

  cin >> n >> m >> K;

  for (int i = 1; i <= 300; i++)
    edges[0].emplace_back(i, 0);
  
  REP (i, m) {
    int p, q, c;
    cin >> p >> q >> c;
    edges[p].emplace_back(q, c);
  }

  dp[0][0][0] = 1;

  REP (i, n) {
    REP (j, 301) REP (k, 301) {
      for (auto &pr: edges[j]) {
        if (k + pr.second <= K)
          (dp[i+1][pr.first][k + pr.second] += dp[i][j][k]) %= MOD;
      }
    }
  }

  long long ret = 0;
  REP (i, 301) (ret += dp[n][i][K]) %= MOD;
  cout << ret << endl;
  
  return 0;
}
0