結果
問題 | No.1718 Random Squirrel |
ユーザー | square1001 |
提出日時 | 2021-10-22 21:56:51 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,785 bytes |
コンパイル時間 | 1,126 ms |
コンパイル使用メモリ | 89,400 KB |
実行使用メモリ | 20,480 KB |
最終ジャッジ日時 | 2024-09-23 05:23:29 |
合計ジャッジ時間 | 6,578 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,812 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | WA | - |
testcase_12 | AC | 32 ms
6,944 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 159 ms
8,320 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 218 ms
10,112 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 266 ms
11,776 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 270 ms
11,648 KB |
testcase_26 | AC | 187 ms
11,384 KB |
testcase_27 | WA | - |
testcase_28 | AC | 187 ms
11,388 KB |
testcase_29 | AC | 209 ms
15,744 KB |
testcase_30 | AC | 217 ms
20,352 KB |
testcase_31 | AC | 215 ms
20,480 KB |
testcase_32 | AC | 209 ms
15,744 KB |
ソースコード
#include <queue> #include <vector> #include <iostream> #include <algorithm> #include <functional> using namespace std; int main() { int N, K; cin >> N >> K; vector<vector<int> > G(N); for (int i = 0; i < N - 1; ++i) { int a, b; cin >> a >> b; --a, --b; G[a].push_back(b); G[b].push_back(a); } vector<int> D(K); for (int i = 0; i < K; ++i) { cin >> D[i]; --D[i]; } vector<bool> donguri(N, false); for (int i = 0; i < K; ++i) { donguri[D[i]] = true; } vector<int> subsize(N); vector<int> overway(N, -1), depth(N); function<void(int, int, int)> dfs = [&](int pos, int pre, int id) { if (donguri[pos]) { subsize[pos] = 1; id = pos; } overway[pos] = id; for (int i : G[pos]) { if (i == pre) continue; depth[i] = depth[pos] + 1; dfs(i, pos, id); subsize[pos] += subsize[i]; } }; dfs(D[0], -1, D[0]); function<vector<int>(int)> shortest_path = [&](int pos) { queue<int> que; que.push(pos); vector<int> resdist(N, -1); resdist[pos] = 0; while (!que.empty()) { int u = que.front(); que.pop(); for (int i : G[u]) { if (resdist[i] == -1 && subsize[i] >= 1) { resdist[i] = resdist[u] + 1; que.push(i); } } } return resdist; }; vector<int> v0 = shortest_path(D[0]); int p1 = max_element(v0.begin(), v0.end()) - v0.begin(); vector<int> v1 = shortest_path(p1); int p2 = max_element(v1.begin(), v1.end()) - v1.begin(); vector<int> v2 = shortest_path(p2); int base_cost = -2; for (int i = 0; i < N; ++i) { if (subsize[i] >= 1) { base_cost += 2; } } for (int i = 0; i < N; ++i) { if (subsize[i] >= 1) { cout << base_cost - max(v1[i], v2[i]) << endl; } else { cout << base_cost + (depth[i] - depth[overway[i]]) - max(v1[overway[i]], v2[overway[i]]) << endl; } } return 0; }