結果
問題 | No.92 逃走経路 |
ユーザー | nayuta |
提出日時 | 2020-01-04 17:30:49 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 926 bytes |
コンパイル時間 | 1,667 ms |
コンパイル使用メモリ | 176,168 KB |
実行使用メモリ | 10,276 KB |
最終ジャッジ日時 | 2024-11-22 21:09:24 |
合計ジャッジ時間 | 80,687 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | AC | 2 ms
10,152 KB |
testcase_02 | AC | 2 ms
10,148 KB |
testcase_03 | AC | 2 ms
10,152 KB |
testcase_04 | AC | 2 ms
10,148 KB |
testcase_05 | TLE | - |
testcase_06 | AC | 6 ms
10,020 KB |
testcase_07 | AC | 6 ms
10,020 KB |
testcase_08 | AC | 2 ms
10,148 KB |
testcase_09 | AC | 3 ms
10,144 KB |
testcase_10 | TLE | - |
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<bits/stdc++.h> using namespace std; struct edge{ int to, cost; edge(int a, int b){ to = a, cost = b; } }; int N, M, K, d[1010]; bool ans[110]; vector<vector<edge>> G; void dfs(int v, int pv, int k = 0){ if(k == K){ ans[v] = true; return ; } for(auto nv : G[v]){ if(d[k] != nv.cost) continue; dfs(nv.to, v, k + 1); } } int main(){ cin >> N >> M >> K; G.assign(N, vector<edge>()); for(int i = 0; i < M; i++){ int a, b, c; cin >> a >> b >> c; a--, b--; G[a].emplace_back(b, c); G[b].emplace_back(a, c); } for(int i = 0; i < K; i++) cin >> d[i]; for(int i = 0; i < N; i++){ dfs(i, -1); } cout << count(ans, ans+N, true) << endl; for(int i = 0; i < N; i++){ if(ans[i]){ cout << i + 1 << " "; } } cout << endl; return 0; }