結果

問題 No.92 逃走経路
ユーザー SSRSSSRS
提出日時 2020-11-06 23:18:52
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 7 ms / 5,000 ms
コード長 989 bytes
コンパイル時間 1,896 ms
コンパイル使用メモリ 178,008 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-29 19:35:56
合計ジャッジ時間 2,881 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
4,380 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 AC 7 ms
4,376 KB
testcase_06 AC 3 ms
4,380 KB
testcase_07 AC 3 ms
4,376 KB
testcase_08 AC 2 ms
4,380 KB
testcase_09 AC 2 ms
4,380 KB
testcase_10 AC 7 ms
4,376 KB
testcase_11 AC 6 ms
4,376 KB
testcase_12 AC 7 ms
4,376 KB
testcase_13 AC 2 ms
4,376 KB
testcase_14 AC 3 ms
4,376 KB
testcase_15 AC 4 ms
4,380 KB
testcase_16 AC 5 ms
4,376 KB
testcase_17 AC 5 ms
4,380 KB
testcase_18 AC 4 ms
4,380 KB
testcase_19 AC 4 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
  int N, M, K;
  cin >> N >> M >> K;
  vector<vector<pair<int, int>>> E(N);
  for (int i = 0; i < M; i++){
    int a, b, c;
    cin >> a >> b >> c;
    a--;
    b--;
    E[a].push_back(make_pair(c, b));
    E[b].push_back(make_pair(c, a));
  }
  vector<int> d(K);
  for (int i = 0; i < K; i++){
    cin >> d[i];
  }
  vector<vector<bool>> dp(K + 1, vector<bool>(N, false));
  for (int i = 0; i < N; i++){
    dp[0][i] = true;
  }
  for (int i = 0; i < K; i++){
    for (int j = 0; j < N; j++){
      if (dp[i][j]){
        for (auto P : E[j]){
          if (P.first == d[i]){
            dp[i + 1][P.second] = true;
          }
        }
      }
    }
  }
  vector<int> ans;
  for (int i = 0; i < N; i++){
    if (dp[K][i]){
      ans.push_back(i);
    }
  }
  int cnt = ans.size();
  cout << cnt << endl;
  for (int i = 0; i < cnt; i++){
    cout << ans[i] + 1;
    if (i < cnt - 1){
      cout << ' ';
    }
  }
  cout << endl;
}
0