結果
問題 | No.1212 Second Path |
ユーザー | carrot46 |
提出日時 | 2020-08-31 17:17:45 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,919 bytes |
コンパイル時間 | 2,087 ms |
コンパイル使用メモリ | 187,344 KB |
実行使用メモリ | 66,088 KB |
最終ジャッジ日時 | 2024-11-16 06:11:02 |
合計ジャッジ時間 | 24,874 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | RE | - |
testcase_20 | WA | - |
testcase_21 | RE | - |
testcase_22 | WA | - |
testcase_23 | AC | 159 ms
5,248 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 160 ms
5,248 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | RE | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | AC | 2 ms
5,248 KB |
testcase_43 | AC | 2 ms
5,248 KB |
testcase_44 | AC | 2 ms
5,248 KB |
testcase_45 | AC | 441 ms
65,272 KB |
testcase_46 | AC | 434 ms
65,268 KB |
testcase_47 | AC | 447 ms
65,268 KB |
コンパイルメッセージ
main.cpp: In function 'int find_lca(int, int, ll&, vec&, std::vector<int>&, mat&, mat&, mat&)': main.cpp:79:22: warning: 'temp_id' may be used uninitialized [-Wmaybe-uninitialized] 79 | id.push_back(temp_id); | ^~~~~~~ main.cpp:70:32: note: 'temp_id' was declared here 70 | int d = rank[y] - rank[x], temp_id; | ^~~~~~~
ソースコード
#include <bits/stdc++.h> //#include <chrono> #pragma GCC optimize("Ofast") using namespace std; #define reps(i,s,n) for(int i = s; i < n; i++) #define rep(i,n) reps(i,0,n) #define Rreps(i,n,e) for(int i = n - 1; i >= e; --i) #define Rrep(i,n) Rreps(i,n,0) #define ALL(a) a.begin(), a.end() #define fi first #define se second typedef long long ll; typedef vector<ll> vec; typedef vector<vec> mat; ll N,M,H,W,Q,K,A,B; string S; typedef pair<ll, ll> P; const ll INF = (1LL<<60); template<class T> bool chmin(T &a, const T &b){ if(a > b) {a = b; return true;} else return false; } struct edge{ int to; ll cost; edge(){} edge(int a, ll b){ to = a; cost = b; } bool operator < (const edge &e){ return cost < e.cost; } bool operator == (const edge &e){ return cost = e.cost; } }; using ve = vector<edge>; const int max_log = 17; void make_G(vector<ve> &G){ rep(i,N - 2){ int u, v, w; cin>>u>>v>>w; --u; --v; G[u].emplace_back(v, w); G[v].emplace_back(u, w); } G[N - 1].emplace_back(0, INF); } void dfs(int v, int p, vector<int> &rank, vec &v_id, vec &v_len, vec &v_v, vector<ve> &G, vec &v_parent_cost){ rank[v] = rank[p] + 1; rep(i, (int)G[v].size()) { edge e = G[v][i]; G[e.to].erase(find(ALL(G[e.to]), edge(v, e.cost))); v_parent_cost[e.to] = e.cost; v_id[e.to] = i; v_len[e.to] = e.cost; v_v[e.to] = v; dfs(e.to, v, rank, v_id, v_len, v_v, G, v_parent_cost); } } int find_lca(int x, int y, ll &len, vec &id, vector<int> &rank, mat &dbl_v, mat &dbl_len, mat &dbl_id){ if(rank[x] > rank[y]) swap(x, y); int d = rank[y] - rank[x], temp_id; Rrep(i, max_log) { if((d>>i)&1) { len += dbl_len[i][y]; temp_id = dbl_id[i][y]; y = dbl_v[i][y]; } } if(x == y) { id.push_back(temp_id); return x; } Rrep(i, max_log){ if(dbl_v[i][x] != dbl_v[i][y]){ len += dbl_len[i][x] + dbl_len[i][y]; x = dbl_v[i][x]; y = dbl_v[i][y]; } } len += dbl_len[0][x] + dbl_len[0][y]; id.push_back(dbl_id[0][x]); id.push_back(dbl_id[0][y]); return dbl_v[0][x]; } int main() { cin>>N; ++N; vector<ve> G(N, ve(0)); make_G(G); rep(i,N) sort(ALL(G[i])); vector<int> rank(N, -1); vec parent_cost(N, INF); mat dbl_min(max_log, vec(N, INF)), dbl_len(max_log, vec(N)), dbl_v(max_log, vec(N)), dbl_id(max_log, vec(N)); rank[N - 1] = 0; dbl_id[0][0] = 0; dbl_len[0][0] = INF; dbl_v[0][0] = dbl_v[0][N - 1] = N - 1; dfs(0, (int)N - 1, rank, dbl_id[0], dbl_len[0], dbl_v[0], G, parent_cost); reps(i, 1, max_log){ rep(v, N){ dbl_len[i][v] = dbl_len[i-1][v] + dbl_len[i-1][dbl_v[i-1][v]]; dbl_v[i][v] = dbl_v[i-1][dbl_v[i-1][v]]; dbl_id[i][v] = dbl_id[i-1][dbl_v[i-1][v]]; auto ite = G[dbl_v[i-1][v]].begin() + (int)(dbl_id[i-1][v] == 0); dbl_min[i][v] = min({dbl_min[i-1][v], dbl_min[i-1][dbl_v[i-1][v]], ite == G[dbl_v[i-1][v]].end() ? INF : ite->cost}); } } cin>>Q; rep(_, Q) { int x, y; cin >> x >> y; --x; --y; ll res(0), min_cost(INF); vec id(0); int lca = find_lca(x, y, res, id, rank, dbl_v, dbl_len, dbl_id); chmin(min_cost, parent_cost[lca]); if (y != lca) swap(x, y); if (!G[x].empty()) chmin(min_cost, (ll) G[x][0].cost); if (!G[y].empty() && id.size() == 2) chmin(min_cost, (ll)G[y][0].cost); rep(i, (int) G[lca].size()) { if (find(ALL(id), i) == id.end()) { chmin(min_cost, (ll) G[lca][i].cost); break; } } cout << (min_cost == INF ? -1 : res + min_cost * 2) << endl; } }