結果

問題 No.1111 コード進行
ユーザー snrnsidysnrnsidy
提出日時 2021-06-14 02:18:12
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 212 ms / 2,000 ms
コード長 916 bytes
コンパイル時間 2,189 ms
コンパイル使用メモリ 205,192 KB
実行使用メモリ 215,680 KB
最終ジャッジ日時 2024-06-06 05:46:20
合計ジャッジ時間 4,670 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 4 ms
5,376 KB
testcase_13 AC 3 ms
5,376 KB
testcase_14 AC 5 ms
5,376 KB
testcase_15 AC 3 ms
5,376 KB
testcase_16 AC 4 ms
5,376 KB
testcase_17 AC 3 ms
5,376 KB
testcase_18 AC 3 ms
5,376 KB
testcase_19 AC 3 ms
5,376 KB
testcase_20 AC 3 ms
5,376 KB
testcase_21 AC 3 ms
5,376 KB
testcase_22 AC 3 ms
5,376 KB
testcase_23 AC 3 ms
5,376 KB
testcase_24 AC 3 ms
5,376 KB
testcase_25 AC 6 ms
6,528 KB
testcase_26 AC 4 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 11 ms
5,376 KB
testcase_29 AC 12 ms
9,728 KB
testcase_30 AC 22 ms
13,056 KB
testcase_31 AC 4 ms
5,376 KB
testcase_32 AC 33 ms
18,560 KB
testcase_33 AC 26 ms
12,288 KB
testcase_34 AC 11 ms
5,888 KB
testcase_35 AC 13 ms
5,376 KB
testcase_36 AC 19 ms
10,240 KB
testcase_37 AC 24 ms
22,016 KB
testcase_38 AC 50 ms
44,160 KB
testcase_39 AC 48 ms
26,240 KB
testcase_40 AC 95 ms
75,648 KB
testcase_41 AC 13 ms
5,376 KB
testcase_42 AC 41 ms
37,504 KB
testcase_43 AC 70 ms
52,608 KB
testcase_44 AC 6 ms
5,376 KB
testcase_45 AC 10 ms
5,376 KB
testcase_46 AC 19 ms
18,688 KB
testcase_47 AC 36 ms
18,816 KB
testcase_48 AC 212 ms
215,680 KB
testcase_49 AC 5 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

const long long int MOD = 1e9 + 7;
vector <pair<int, int>> adj[301];
long long int dp[301][301][301];

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

	int N, M, K, a, b, c;

	cin >> N >> M >> K;

	for (int i = 0; i < M; i++)
	{
		cin >> a >> b >> c;
		adj[a].push_back(make_pair(b, c));
	}

	for (int i = 1; i <= 300; i++)
	{
		dp[1][i][0] = 1;
	}

	for (int i = 1; i < N; i++)
	{
		for (int j = 1; j <= 300; j++)
		{
			for (int k = 0; k <= K; k++)
			{
				if (dp[i][j][k] == 0)
				{
					continue;
				}
				for (auto it : adj[j])
				{
					int x = it.first;
					int y = it.second;
					if (k + y <= K)
					{
						dp[i + 1][x][k + y] += dp[i][j][k];
						dp[i + 1][x][y + k] %= MOD;
					}
				}
			}
		}
	}
	
	long long int res = 0;

	for (int i = 1; i <= 300; i++)
	{
		res += dp[N][i][K];
		res %= MOD;
	}

	cout << res << '\n';

	return 0;
}
0