結果
問題 | No.92 逃走経路 |
ユーザー | lapi |
提出日時 | 2019-07-20 21:38:25 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 18 ms / 5,000 ms |
コード長 | 1,380 bytes |
コンパイル時間 | 1,103 ms |
コンパイル使用メモリ | 110,692 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-09 18:05:42 |
合計ジャッジ時間 | 2,169 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 18 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 4 ms
6,940 KB |
testcase_06 | AC | 5 ms
6,944 KB |
testcase_07 | AC | 5 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 13 ms
6,940 KB |
testcase_10 | AC | 7 ms
6,940 KB |
testcase_11 | AC | 8 ms
6,948 KB |
testcase_12 | AC | 14 ms
6,944 KB |
testcase_13 | AC | 7 ms
6,944 KB |
testcase_14 | AC | 9 ms
6,940 KB |
testcase_15 | AC | 13 ms
6,940 KB |
testcase_16 | AC | 13 ms
6,944 KB |
testcase_17 | AC | 18 ms
6,940 KB |
testcase_18 | AC | 10 ms
6,944 KB |
testcase_19 | AC | 6 ms
6,944 KB |
ソースコード
#include <iostream> #include <string> #include <algorithm> #include <vector> #include <stack> #include <queue> #include <list> #include <set> #include <map> #include <numeric> #include <regex> #include <tuple> #include <iomanip> #include <cmath> using namespace std; typedef long long ll; typedef pair<int, int> P; #define MOD 1000000007 // 10^9 + 7 #define INF 1000000000 // 10^9 #define LLINF 1LL<<60 bool dp[1009][109]; // dp[i][j] : i回目の移動後に町jにいる可能性があるかどうか vector<int> G[109][109]; int cost[1009]; int main() { cin.tie(0); ios::sync_with_stdio(false); int N, M, K; cin >> N >> M >> K; for (int i = 0; i < M; i++) { int tmp1, tmp2, d; cin >> tmp1 >> tmp2 >> d; G[tmp1][tmp2].push_back(d); G[tmp2][tmp1].push_back(d); } for (int i = 1; i <= K; i++) cin >> cost[i]; for (int i = 1; i <= N; i++) dp[0][i] = true; for (int i = 1; i <= K; i++) { for (int j = 1; j <= N; j++) { if (dp[i - 1][j]) { // 直前に犯人が町jにいる可能性があるとしたら for (int k = 1; k <= N; k++) { for (int p = 0; p < G[j][k].size(); p++) { if (G[j][k][p] == cost[i]) dp[i][k] = true; } } } } } int ans = 0; for (int i = 1; i <= N; i++) { if (dp[K][i]) ans++; } cout << ans << endl; for (int i = 1; i <= N; i++) { if (dp[K][i]) cout << i << " "; } cout << endl; return 0; }