結果

問題 No.1111 コード進行
ユーザー kk
提出日時 2020-09-04 23:16:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 484 ms / 2,000 ms
コード長 900 bytes
コンパイル時間 2,472 ms
コンパイル使用メモリ 205,548 KB
実行使用メモリ 215,680 KB
最終ジャッジ日時 2024-05-05 03:36:40
合計ジャッジ時間 8,987 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
6,272 KB
testcase_01 AC 6 ms
5,632 KB
testcase_02 AC 4 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 4 ms
5,376 KB
testcase_05 AC 6 ms
5,504 KB
testcase_06 AC 13 ms
9,216 KB
testcase_07 AC 17 ms
12,544 KB
testcase_08 AC 15 ms
11,904 KB
testcase_09 AC 8 ms
6,272 KB
testcase_10 AC 24 ms
16,128 KB
testcase_11 AC 15 ms
10,496 KB
testcase_12 AC 15 ms
9,088 KB
testcase_13 AC 12 ms
8,320 KB
testcase_14 AC 20 ms
11,904 KB
testcase_15 AC 18 ms
14,720 KB
testcase_16 AC 16 ms
9,728 KB
testcase_17 AC 23 ms
16,256 KB
testcase_18 AC 15 ms
11,904 KB
testcase_19 AC 4 ms
5,376 KB
testcase_20 AC 7 ms
6,272 KB
testcase_21 AC 15 ms
13,312 KB
testcase_22 AC 23 ms
15,360 KB
testcase_23 AC 14 ms
11,136 KB
testcase_24 AC 13 ms
9,728 KB
testcase_25 AC 26 ms
16,256 KB
testcase_26 AC 20 ms
14,080 KB
testcase_27 AC 6 ms
5,504 KB
testcase_28 AC 237 ms
130,176 KB
testcase_29 AC 203 ms
124,416 KB
testcase_30 AC 161 ms
86,144 KB
testcase_31 AC 33 ms
20,352 KB
testcase_32 AC 264 ms
162,688 KB
testcase_33 AC 109 ms
55,808 KB
testcase_34 AC 185 ms
109,568 KB
testcase_35 AC 312 ms
190,336 KB
testcase_36 AC 266 ms
131,584 KB
testcase_37 AC 192 ms
121,728 KB
testcase_38 AC 139 ms
87,552 KB
testcase_39 AC 174 ms
81,920 KB
testcase_40 AC 263 ms
138,624 KB
testcase_41 AC 273 ms
152,832 KB
testcase_42 AC 217 ms
130,176 KB
testcase_43 AC 152 ms
84,224 KB
testcase_44 AC 118 ms
75,520 KB
testcase_45 AC 215 ms
128,000 KB
testcase_46 AC 306 ms
215,552 KB
testcase_47 AC 484 ms
215,680 KB
testcase_48 AC 309 ms
215,680 KB
testcase_49 AC 311 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