結果
問題 | No.901 K-ary εxtrεεmε |
ユーザー | paruki |
提出日時 | 2019-10-10 20:45:08 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 4,559 bytes |
コンパイル時間 | 2,612 ms |
コンパイル使用メモリ | 201,004 KB |
実行使用メモリ | 14,752 KB |
最終ジャッジ日時 | 2024-11-21 21:43:57 |
合計ジャッジ時間 | 9,572 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 183 ms
14,376 KB |
testcase_26 | WA | - |
testcase_27 | AC | 221 ms
12,932 KB |
testcase_28 | AC | 217 ms
12,956 KB |
testcase_29 | AC | 215 ms
12,956 KB |
ソースコード
#define _USE_MATH_DEFINES #include "bits/stdc++.h" using namespace std; #define FOR(i,j,k) for(int (i)=(j);(i)<(int)(k);++(i)) #define rep(i,j) FOR(i,0,j) #define each(x,y) for(auto &(x):(y)) #define mp make_pair #define MT make_tuple #define all(x) (x).begin(),(x).end() #define debug(x) cout<<#x<<": "<<(x)<<endl #define smax(x,y) (x)=max((x),(y)) #define smin(x,y) (x)=min((x),(y)) #define MEM(x,y) memset((x),(y),sizeof (x)) #define sz(x) (int)(x).size() #define RT return using ll = long long; using pii = pair<int, int>; using vi = vector<int>; using vll = vector<ll>; class HLDecomposition { int cur = 0; void bfs(const vector<vector<int> > &G) { queue<tuple<int, int, int> > que; vector<int> order; que.push(make_tuple(0, -1, 0)); while (!que.empty()) { int u, pre, d; tie(u, pre, d) = que.front(); que.pop(); parent[u] = pre; depth[u] = d; order.push_back(u); for (int v : G[u])if (v != pre) { que.push(make_tuple(v, u, d + 1)); } } reverse(order.begin(), order.end()); for (int u : order) { sub[u] = 1; for (int v : G[u])if (v != parent[u])sub[u] += sub[v]; } } void dfs_stk(const vector<vector<int> > & G) { stack<pair<int, int> > stk; stk.push(make_pair(0, 0)); while (!stk.empty()) { int u, h, pre; tie(u, h) = stk.top(); stk.pop(); head[u] = h; id[u] = cur++; pre = parent[u]; int heavy = -1, maxi = 0; for (int v : G[u]) { if (v != pre && maxi < sub[v]) { maxi = sub[v]; heavy = v; } } for (int v : G[u]) { if (v != pre && v != heavy) { stk.push(make_pair(v, v)); } } if (heavy != -1)stk.push(make_pair(heavy, h)); } } public: vector<int> parent, depth, sub, id, head; HLDecomposition(const vector<vector<int> > &G) { parent = depth = sub = id = head = vector<int>(G.size()); bfs(G); dfs_stk(G); } /* パス(u, v)で通る頂点を半開区間の集合に変換する。 O(log(|V|)) */ vector<pair<int, int> > goUpToLCA(int u, int v) { vector<pair<int, int> > res; while (true) { if (head[u] == head[v]) { if (depth[u] > depth[v])swap(u, v); res.emplace_back(id[u], id[v] + 1); break; } else { if (depth[head[u]] > depth[head[v]])swap(u, v); res.emplace_back(id[head[v]], id[v] + 1); v = parent[head[v]]; } } reverse(res.begin(), res.end()); return res; } int getLCA(int u, int v) { while (true) { if (head[u] == head[v]) { if (depth[u] > depth[v])swap(u, v); break; } else { if (depth[head[u]] > depth[head[v]])swap(u, v); v = parent[head[v]]; } } return u; } }; void solve() { int N; cin >> N; vi U(N-1), V(N-1), W(N-1); vector<vi> G(N); rep(i, N - 1) { cin >> U[i] >> V[i] >> W[i]; G[U[i]].push_back(V[i]); G[V[i]].push_back(U[i]); } HLDecomposition hld(G); vll sm(N + 1); rep(i, N - 1) { if (hld.depth[V[i]] < hld.depth[U[i]]) { swap(U[i], V[i]); } sm[hld.id[V[i]] + 1] = W[i]; } rep(i, N)sm[i + 1] += sm[i]; int Q; cin >> Q; vector<pii> S; rep(ITER, Q) { S.clear(); int K; cin >> K; vi X(K); rep(i, K) { cin >> X[i]; } FOR(i, 1, K) { auto ps = hld.goUpToLCA(X[0], X[i]); S.insert(S.end(), all(ps)); } sort(all(S)); S.emplace_back(N + 1, N + 1); ll ans = 0; int l = -1, r = -1; rep(i, sz(S)) { if (S[i].first <= r) { smax(r, S[i].second); } else { if (i > 0) { ans += sm[r] - sm[l]; } tie(l, r) = S[i]; } } cout << ans << endl; } } int main() { ios::sync_with_stdio(false); cin.tie(0); cout << fixed << setprecision(15); solve(); return 0; }