結果

問題 No.1111 コード進行
ユーザー granddaifukugranddaifuku
提出日時 2020-07-21 12:55:51
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 196 ms / 2,000 ms
コード長 1,059 bytes
コンパイル時間 1,839 ms
コンパイル使用メモリ 171,480 KB
実行使用メモリ 215,764 KB
最終ジャッジ日時 2024-06-08 17:56:14
合計ジャッジ時間 4,755 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,272 KB
testcase_01 AC 4 ms
5,632 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 4 ms
5,504 KB
testcase_06 AC 6 ms
9,088 KB
testcase_07 AC 7 ms
12,672 KB
testcase_08 AC 8 ms
11,904 KB
testcase_09 AC 4 ms
6,272 KB
testcase_10 AC 7 ms
16,128 KB
testcase_11 AC 5 ms
10,620 KB
testcase_12 AC 5 ms
9,088 KB
testcase_13 AC 4 ms
8,320 KB
testcase_14 AC 7 ms
11,904 KB
testcase_15 AC 7 ms
14,848 KB
testcase_16 AC 6 ms
9,728 KB
testcase_17 AC 5 ms
16,128 KB
testcase_18 AC 5 ms
12,024 KB
testcase_19 AC 3 ms
5,376 KB
testcase_20 AC 4 ms
6,400 KB
testcase_21 AC 6 ms
13,312 KB
testcase_22 AC 6 ms
15,408 KB
testcase_23 AC 6 ms
11,252 KB
testcase_24 AC 6 ms
9,788 KB
testcase_25 AC 9 ms
16,232 KB
testcase_26 AC 8 ms
14,040 KB
testcase_27 AC 4 ms
5,504 KB
testcase_28 AC 37 ms
130,124 KB
testcase_29 AC 37 ms
124,416 KB
testcase_30 AC 29 ms
86,180 KB
testcase_31 AC 6 ms
20,476 KB
testcase_32 AC 71 ms
162,604 KB
testcase_33 AC 33 ms
55,808 KB
testcase_34 AC 30 ms
109,644 KB
testcase_35 AC 66 ms
190,188 KB
testcase_36 AC 75 ms
131,584 KB
testcase_37 AC 71 ms
121,728 KB
testcase_38 AC 52 ms
87,552 KB
testcase_39 AC 46 ms
82,048 KB
testcase_40 AC 72 ms
138,648 KB
testcase_41 AC 46 ms
152,704 KB
testcase_42 AC 73 ms
130,300 KB
testcase_43 AC 51 ms
84,096 KB
testcase_44 AC 30 ms
75,512 KB
testcase_45 AC 45 ms
128,060 KB
testcase_46 AC 152 ms
215,680 KB
testcase_47 AC 154 ms
215,764 KB
testcase_48 AC 196 ms
215,680 KB
testcase_49 AC 165 ms
215,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#define rep(i, n) for(int i = 0; i < (int)n; ++i)
#define FOR(i, a, b) for(int i = a; i < (int)b; ++i)
#define rrep(i, n) for(int i = ((int)n - 1); i >= 0; --i)

using ll = long long;
using ld = long double;

const ll INF = 1e18;
const int Inf = 1e9;
const double EPS = 1e-9;
const ll MOD = 1e9 + 7;
const int N = 301;

int main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(0);
	int n, m, K;
	cin >> n >> m >> K;
	vector<pair<int, int> > code[N];
	ll dp[n][N][N] = {};
	rep(i, N) dp[0][i][0] = 1;
	rep(i, m) {
	  int p, q, c;
	  cin >> p >> q >> c;
	  code[p - 1].emplace_back(q - 1, c);
	}
	rep(i, n - 1) {
	  rep(j, N) {
		if (code[j].size() == 0) continue;
		rep(k, N) {
		  rep(l, code[j].size()) {
			int next = code[j][l].first, comp = code[j][l].second;
			if (k + comp >= N) continue;
			dp[i + 1][next][k + comp] += dp[i][j][k];
			dp[i + 1][next][k + comp] %= MOD;
		  }
		}
	  }
	}
	ll res = 0;
	rep(i, N) {
	  res += dp[n - 1][i][K];
	  res %= MOD;
	}
	cout << res << endl;
	
    return 0;
}

0