結果
問題 | No.92 逃走経路 |
ユーザー | ldsyb |
提出日時 | 2016-12-02 20:44:28 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 923 bytes |
コンパイル時間 | 1,258 ms |
コンパイル使用メモリ | 91,428 KB |
実行使用メモリ | 886,028 KB |
最終ジャッジ日時 | 2024-11-27 17:35:39 |
合計ジャッジ時間 | 79,169 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | AC | 2 ms
12,064 KB |
testcase_02 | MLE | - |
testcase_03 | AC | 2 ms
272,496 KB |
testcase_04 | AC | 2 ms
141,892 KB |
testcase_05 | MLE | - |
testcase_06 | AC | 115 ms
13,636 KB |
testcase_07 | AC | 18 ms
27,084 KB |
testcase_08 | AC | 2 ms
27,208 KB |
testcase_09 | AC | 7 ms
6,688 KB |
testcase_10 | MLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
ソースコード
#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; }