結果

問題 No.1111 コード進行
ユーザー kotatsugamekotatsugame
提出日時 2020-07-10 21:32:38
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 222 ms / 2,000 ms
コード長 539 bytes
コンパイル時間 738 ms
コンパイル使用メモリ 71,984 KB
実行使用メモリ 215,552 KB
最終ジャッジ日時 2024-10-11 08:00:17
合計ジャッジ時間 3,479 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 3 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 4 ms
6,820 KB
testcase_07 AC 4 ms
6,820 KB
testcase_08 AC 4 ms
6,820 KB
testcase_09 AC 3 ms
6,816 KB
testcase_10 AC 4 ms
6,820 KB
testcase_11 AC 3 ms
6,820 KB
testcase_12 AC 5 ms
6,816 KB
testcase_13 AC 4 ms
6,820 KB
testcase_14 AC 6 ms
6,816 KB
testcase_15 AC 3 ms
6,816 KB
testcase_16 AC 5 ms
6,816 KB
testcase_17 AC 4 ms
6,816 KB
testcase_18 AC 3 ms
6,816 KB
testcase_19 AC 3 ms
6,820 KB
testcase_20 AC 3 ms
6,820 KB
testcase_21 AC 3 ms
6,816 KB
testcase_22 AC 5 ms
6,820 KB
testcase_23 AC 4 ms
6,820 KB
testcase_24 AC 4 ms
6,816 KB
testcase_25 AC 9 ms
7,296 KB
testcase_26 AC 5 ms
6,820 KB
testcase_27 AC 3 ms
6,820 KB
testcase_28 AC 17 ms
8,620 KB
testcase_29 AC 22 ms
17,152 KB
testcase_30 AC 25 ms
13,184 KB
testcase_31 AC 4 ms
6,816 KB
testcase_32 AC 36 ms
18,432 KB
testcase_33 AC 30 ms
12,416 KB
testcase_34 AC 14 ms
6,816 KB
testcase_35 AC 20 ms
9,600 KB
testcase_36 AC 145 ms
105,984 KB
testcase_37 AC 99 ms
88,448 KB
testcase_38 AC 53 ms
45,528 KB
testcase_39 AC 55 ms
27,488 KB
testcase_40 AC 115 ms
85,480 KB
testcase_41 AC 41 ms
27,788 KB
testcase_42 AC 112 ms
94,336 KB
testcase_43 AC 73 ms
54,356 KB
testcase_44 AC 36 ms
31,232 KB
testcase_45 AC 63 ms
49,152 KB
testcase_46 AC 18 ms
19,920 KB
testcase_47 AC 121 ms
19,456 KB
testcase_48 AC 222 ms
215,552 KB
testcase_49 AC 171 ms
161,280 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:8:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    8 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<vector>
using namespace std;
const long mod=1e9+7;
long dp[301][301][301];
int N,M,K;
vector<pair<int,int> >G[301];
main()
{
	cin>>N>>M>>K;
	for(int i=0;i<M;i++)
	{
		int u,v,c;cin>>u>>v>>c;
		G[u].push_back(make_pair(v,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++)
	{
		for(pair<int,int>e:G[j])if(k+e.second<=K)(dp[i+1][e.first][k+e.second]+=dp[i][j][k])%=mod;
	}
	long ans=0;
	for(int i=1;i<=300;i++)ans+=dp[N][i][K];
	cout<<ans%mod<<endl;
}
0