結果

問題 No.1749 ラムドスウイルスの感染拡大
ユーザー ku_senjanku_senjan
提出日時 2023-06-04 11:25:08
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 8 ms / 2,000 ms
コード長 574 bytes
コンパイル時間 679 ms
コンパイル使用メモリ 72,256 KB
実行使用メモリ 7,628 KB
最終ジャッジ日時 2024-06-09 03:51:50
合計ジャッジ時間 1,534 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
7,388 KB
testcase_01 AC 3 ms
7,448 KB
testcase_02 AC 2 ms
7,468 KB
testcase_03 AC 3 ms
7,428 KB
testcase_04 AC 6 ms
7,440 KB
testcase_05 AC 3 ms
7,304 KB
testcase_06 AC 3 ms
7,416 KB
testcase_07 AC 2 ms
7,304 KB
testcase_08 AC 3 ms
7,416 KB
testcase_09 AC 3 ms
7,296 KB
testcase_10 AC 3 ms
7,428 KB
testcase_11 AC 3 ms
7,484 KB
testcase_12 AC 8 ms
7,508 KB
testcase_13 AC 3 ms
7,540 KB
testcase_14 AC 3 ms
7,516 KB
testcase_15 AC 4 ms
7,580 KB
testcase_16 AC 5 ms
7,628 KB
testcase_17 AC 5 ms
7,368 KB
testcase_18 AC 6 ms
7,532 KB
testcase_19 AC 6 ms
7,516 KB
testcase_20 AC 3 ms
7,460 KB
testcase_21 AC 3 ms
7,440 KB
testcase_22 AC 3 ms
7,528 KB
testcase_23 AC 3 ms
7,512 KB
testcase_24 AC 3 ms
7,480 KB
testcase_25 AC 4 ms
7,436 KB
testcase_26 AC 4 ms
7,392 KB
testcase_27 AC 3 ms
7,408 KB
testcase_28 AC 7 ms
7,436 KB
testcase_29 AC 7 ms
7,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <atcoder/modint>
using namespace std;
using namespace atcoder;
using mint = modint998244353;

constexpr int MAX_N = 1010;
constexpr int MAX_T = 1010;
int N, M, T;
vector<int> G[MAX_N];
mint dp[MAX_T][MAX_N];

int main(){
  cin >> N >> M >> T;
  for(int i=0; i<M; i++){
    int u, v; cin >> u >> v;
    G[u].push_back(v);
    G[v].push_back(u);
  }

  dp[0][0] = 1;
  for(int i=0; i<T; i++){
    for(int j=0; j<N; j++){
      for(int k:G[j]){
        dp[i+1][j]+=dp[i][k];
      }
    }
  }

  cout << dp[T][0].val() << endl;
}
0