結果
問題 | No.92 逃走経路 |
ユーザー | ldsyb |
提出日時 | 2017-06-18 14:59:06 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 271 ms / 5,000 ms |
コード長 | 1,135 bytes |
コンパイル時間 | 960 ms |
コンパイル使用メモリ | 87,500 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-01 19:59:33 |
合計ジャッジ時間 | 4,545 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 246 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,820 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 13 ms
6,820 KB |
testcase_06 | AC | 10 ms
6,820 KB |
testcase_07 | AC | 9 ms
6,816 KB |
testcase_08 | AC | 250 ms
6,820 KB |
testcase_09 | AC | 259 ms
6,820 KB |
testcase_10 | AC | 121 ms
6,820 KB |
testcase_11 | AC | 157 ms
6,824 KB |
testcase_12 | AC | 271 ms
6,820 KB |
testcase_13 | AC | 244 ms
6,816 KB |
testcase_14 | AC | 253 ms
6,820 KB |
testcase_15 | AC | 239 ms
6,820 KB |
testcase_16 | AC | 239 ms
6,820 KB |
testcase_17 | AC | 239 ms
6,820 KB |
testcase_18 | AC | 107 ms
6,816 KB |
testcase_19 | AC | 52 ms
6,820 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <sstream> using namespace std; template <typename T> string join(vector<T> v, string str){ stringstream ss; for(int i = 0; i < v.size(); i++){ if(i) ss << str; ss << v[i]; } return ss.str(); } struct edge{ int to, cost; edge(int to, int cost){ this->to = to; this->cost = cost; } }; int main(){ int n, m, k; cin >> n >> m >> k; vector<vector<edge>> e(n); while(m--){ int a, b, c; cin >> a >> b >> c; a--; b--; e[a].emplace_back(edge(b, c)); e[b].emplace_back(edge(a, c)); } int d[k]; for(int i = 0; i < k; i++) cin >> d[i]; vector<vector<bool>> puni(k + 1, vector<bool>(n, false)); for(int i = 0; i < n; i++) puni[0][i] = true; for(int i = 1; i <= k; i++) for(int j = 0; j < n; j++) if(puni[i - 1][j]) for(auto& ee:e[j]) if(ee.cost == d[i - 1]) puni[i][ee.to] = true; for(int i = 0; i < k + 1; i++){ for(int j = 0; j < n; j++) cerr << puni[i][j] << ' '; cerr << endl; } vector<int> ans; for(int i = 0; i < n; i++) if(puni[k][i]) ans.emplace_back(i + 1); cout << ans.size() << endl; cout << join(ans, " ") << endl; }