結果
問題 | No.92 逃走経路 |
ユーザー | motxx |
提出日時 | 2014-12-07 21:34:49 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,973 bytes |
コンパイル時間 | 1,502 ms |
コンパイル使用メモリ | 181,116 KB |
実行使用メモリ | 38,788 KB |
最終ジャッジ日時 | 2024-06-11 17:25:26 |
合計ジャッジ時間 | 8,786 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 444 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | TLE | - |
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 <bits/stdc++.h> using namespace std; #define REP(i,a,b) for(int i=a;i<(int)b;i++) #define rep(i,n) REP(i,0,n) typedef long long ll; struct EDGE { int u, v, c; bool operator < (EDGE const& e) const { return c < e.c; } }; struct Edge { int to, cost; }; typedef vector<Edge> Edges; typedef vector<Edges> Graph; int const INF = 1<<29; Graph g; vector<int> d; //vector<set<int> > vlist; bool vlistb[1100][110]; int N, M, K; vector<vector<EDGE> > v; set<int> ans; bool memo[110][1100]; //[idx][depth] vector<EDGE> es; void dfs(int idx, int depth) { if(memo[idx][depth]) return; if(depth == K) { ans.insert(idx); return ; } memo[idx][depth] = 1; rep(i, g[idx].size()) { Edge& e = g[idx][i]; if(!vlistb[depth][e.to]) continue; if(d[depth] != e.cost) continue; dfs(e.to, depth+1); } } int main() { cin >> N >> M >> K; es.resize(M); g.resize(N+1); rep(i, M) { int a, b, c; cin >> a >> b >> c; a--, b--; es[i].u = a, es[i].v = b, es[i].c = c; } d.resize(K); rep(i, K) cin >> d[i]; sort(es.begin(), es.end()); v.resize(K); rep(i, K) { auto uiter = upper_bound(es.begin(), es.end(), (EDGE){0,0,d[i]}); auto liter = lower_bound(es.begin(), es.end(), (EDGE){0,0,d[i]}); for(auto iter=liter; iter!=uiter; iter++) { v[i].push_back(*iter); } } // vlist.resize(K); rep(i, K) { rep(j, v[i].size()) { vlistb[i][v[i][j].u] = 1; vlistb[i][v[i][j].v] = 1; g[v[i][j].u].push_back((Edge){v[i][j].v, v[i][j].c}); g[v[i][j].v].push_back((Edge){v[i][j].u, v[i][j].c}); } } rep(i, N) { if(vlistb[0][i]) { dfs(i, 0); } } cout << ans.size() << endl; bool f = 0; for(auto iter = ans.begin(); iter!=ans.end(); iter++) { if(f) cout << " "; f = 1; cout << (*iter)+1; } cout << endl; return 0; }