結果

問題 No.1749 ラムドスウイルスの感染拡大
ユーザー kotatsugamekotatsugame
提出日時 2021-11-19 23:42:35
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 10 ms / 2,000 ms
コード長 388 bytes
コンパイル時間 489 ms
コンパイル使用メモリ 64,256 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-06-10 11:29:59
合計ジャッジ時間 1,393 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 5 ms
7,040 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 4 ms
7,552 KB
testcase_07 AC 4 ms
7,552 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 10 ms
11,264 KB
testcase_11 AC 10 ms
11,264 KB
testcase_12 AC 8 ms
11,140 KB
testcase_13 AC 4 ms
7,424 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 3 ms
5,376 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 6 ms
8,832 KB
testcase_18 AC 8 ms
10,368 KB
testcase_19 AC 6 ms
9,984 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 3 ms
6,656 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 1 ms
5,376 KB
testcase_25 AC 5 ms
8,960 KB
testcase_26 AC 3 ms
5,504 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 5 ms
7,040 KB
testcase_29 AC 5 ms
6,912 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:7:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    7 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
using namespace std;
const long mod=998244353;
int N,M,T;
int U[1000],V[1000];
long dp[1001][1000];
main()
{
	cin>>N>>M>>T;
	for(int i=0;i<M;i++)
	{
		cin>>U[i]>>V[i];
	}
	dp[0][0]=1;
	for(int t=0;t<T;t++)
	{
		for(int i=0;i<M;i++)
		{
			dp[t+1][U[i]]+=dp[t][V[i]];
			dp[t+1][V[i]]+=dp[t][U[i]];
		}
		for(int i=0;i<N;i++)dp[t+1][i]%=mod;
	}
	cout<<dp[T][0]<<endl;
}
0