結果
問題 | No.92 逃走経路 |
ユーザー | tktk_snsn |
提出日時 | 2021-04-27 22:26:35 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,104 bytes |
コンパイル時間 | 736 ms |
コンパイル使用メモリ | 87,672 KB |
実行使用メモリ | 42,976 KB |
最終ジャッジ日時 | 2024-07-06 17:29:00 |
合計ジャッジ時間 | 3,216 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | RE | - |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 3 ms
6,944 KB |
testcase_07 | AC | 3 ms
6,944 KB |
testcase_08 | AC | 3 ms
6,944 KB |
testcase_09 | AC | 63 ms
40,792 KB |
testcase_10 | AC | 9 ms
20,724 KB |
testcase_11 | AC | 30 ms
26,652 KB |
testcase_12 | AC | 67 ms
42,976 KB |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
ソースコード
#include <vector> #include <iostream> #include <algorithm> #include <cmath> #include <map> #include <unordered_map> using namespace std; template<class T> inline bool chmax(T& a, T b){ if (a < b){ a = b; return true; } return false; } template<class T> inline bool chmin(T& a, T b){ if (a > b){ a = b; return true; } return false; } int G[101][101][1001]; int dp[101][1001]; int main() { int n, m, k; cin >> n >> m >> k; for (int i=0;i<m;++i) { int a, b, c; cin >> a >> b >> c; a--; b--; G[a][b][c] = 1; G[b][a][c] = 1; } for(int i=0; i<n; ++i) dp[i][0] = 1; for(int i=0; i<k; ++i) { int d; cin >> d; for (int s=0; s<n; ++s) { if (!dp[s][i]) continue; for (int t=0; t<n; ++t) { if (G[s][t][d]) dp[t][i+1] = 1; } } } vector<int> ans; for(int i=0; i<n; ++i) if (dp[i][k]) ans.push_back(i+1); cout << ans.size() << endl; for(int i=0; i<ans.size(); ++i) { if(i) cout << " "; cout << ans[i]; } cout << endl; return 0; }