結果

問題 No.1111 コード進行
ユーザー misora192misora192
提出日時 2020-07-11 08:18:56
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 278 ms / 2,000 ms
コード長 1,059 bytes
コンパイル時間 1,764 ms
コンパイル使用メモリ 171,544 KB
実行使用メモリ 238,208 KB
最終ジャッジ日時 2024-10-12 12:58:17
合計ジャッジ時間 4,729 ms
ジャッジサーバーID
(参考情報)
judge4 / 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
5,760 KB
testcase_06 AC 6 ms
7,936 KB
testcase_07 AC 6 ms
7,424 KB
testcase_08 AC 3 ms
5,248 KB
testcase_09 AC 4 ms
6,016 KB
testcase_10 AC 7 ms
10,112 KB
testcase_11 AC 3 ms
5,248 KB
testcase_12 AC 6 ms
7,808 KB
testcase_13 AC 5 ms
6,528 KB
testcase_14 AC 9 ms
10,496 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 7 ms
8,448 KB
testcase_17 AC 7 ms
10,496 KB
testcase_18 AC 3 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 3 ms
5,376 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 9 ms
12,672 KB
testcase_23 AC 4 ms
6,400 KB
testcase_24 AC 5 ms
7,296 KB
testcase_25 AC 10 ms
11,776 KB
testcase_26 AC 7 ms
7,808 KB
testcase_27 AC 3 ms
5,248 KB
testcase_28 AC 98 ms
120,192 KB
testcase_29 AC 41 ms
50,944 KB
testcase_30 AC 71 ms
80,256 KB
testcase_31 AC 11 ms
16,000 KB
testcase_32 AC 68 ms
71,808 KB
testcase_33 AC 51 ms
47,744 KB
testcase_34 AC 70 ms
86,912 KB
testcase_35 AC 90 ms
110,464 KB
testcase_36 AC 126 ms
118,656 KB
testcase_37 AC 33 ms
30,720 KB
testcase_38 AC 26 ms
23,552 KB
testcase_39 AC 89 ms
79,360 KB
testcase_40 AC 111 ms
108,544 KB
testcase_41 AC 112 ms
132,864 KB
testcase_42 AC 59 ms
54,912 KB
testcase_43 AC 52 ms
48,640 KB
testcase_44 AC 25 ms
27,264 KB
testcase_45 AC 73 ms
81,152 KB
testcase_46 AC 3 ms
5,248 KB
testcase_47 AC 278 ms
238,208 KB
testcase_48 AC 3 ms
5,248 KB
testcase_49 AC 3 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i=(0);i<(n);i++)

using namespace std;

typedef long long ll;
typedef pair<ll, ll> pll;

template<class T> bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; }
template<class T> bool chmin(T &a, const T &b) { if (a>b) { a=b; return 1; } return 0; }

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

	ll n, m, k;
	cin >> n >> m >> k;

	int sz = 333;

	vector<pll> g[sz];
	rep(i, m){
		ll p, q, c;
		cin >> p >> q >> c;

		g[p].push_back({q, c});	
	}

	ll dp[n][sz][k+1];
	rep(i, n) rep(j, sz) rep(l, k+1) dp[i][j][l] = 0;

	ll MOD = 1e9+7;
	rep(i, sz) dp[0][i][0] = 1;
	rep(i, n-1){
		rep(j, sz){
			rep(l, k+1){
				for(pll x : g[j]){
					
					ll q = x.first, c = x.second;
					if(l+c <= k) {
						// cout << i << "," << j << "," << l << endl;
						dp[i+1][q][l+c] += dp[i][j][l];
						dp[i+1][q][l+c] %= MOD;
					}
				}
			}
		}
	}

	ll ans = 0;
	rep(j, 301){
		// cout << j << "," << dp[n-1][j][k] << endl;
		ans += dp[n-1][j][k];
		ans %= MOD;
	}

	cout << ans << endl;
}	
0