結果
問題 | No.92 逃走経路 |
ユーザー | ldsyb |
提出日時 | 2016-12-02 20:44:28 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 923 bytes |
コンパイル時間 | 1,040 ms |
コンパイル使用メモリ | 91,556 KB |
実行使用メモリ | 41,832 KB |
最終ジャッジ日時 | 2024-05-05 17:51:27 |
合計ジャッジ時間 | 13,654 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
#include <iostream> #include <algorithm> #include <map> #include <vector> using namespace std; vector<int> ans; void solve(int now, int count, map<int, vector<pair<int, int>>>& mm, vector<int>& d){ for(int i = 0; i < mm[now].size(); i++) if(mm[now][i].second == d[count]){ if(count + 1 == d.size()) ans.emplace_back(mm[now][i].first); else solve(mm[now][i].first, count + 1, mm, d); } } int main(){ int n, m, k; cin >> n >> m >> k; map<int, vector<pair<int, int>>> mm; while(m--){ int a, b, c; cin >> a >> b >> c; a--; b--; mm[a].emplace_back(make_pair(b, c)); mm[b].emplace_back(make_pair(a, c)); } vector<int> d(k); for(auto& dd:d) cin >> dd; for(auto itr = mm.begin(); itr != mm.end(); itr++) solve(itr->first, 0, mm, d); sort(ans.begin(), ans.end()); ans.erase(unique(ans.begin(), ans.end()), ans.end()); cout << ans.size() << endl; for(auto& a:ans) cout << a + 1 << ' '; cout << endl; }