結果
問題 | No.1221 木 *= 3 |
ユーザー | yudedako |
提出日時 | 2020-09-05 15:41:22 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 188 ms / 2,000 ms |
コード長 | 1,639 bytes |
コンパイル時間 | 1,428 ms |
コンパイル使用メモリ | 122,104 KB |
実行使用メモリ | 12,808 KB |
最終ジャッジ日時 | 2024-11-28 18:42:38 |
合計ジャッジ時間 | 5,508 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,820 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,820 KB |
testcase_07 | AC | 183 ms
11,776 KB |
testcase_08 | AC | 177 ms
11,904 KB |
testcase_09 | AC | 178 ms
11,904 KB |
testcase_10 | AC | 179 ms
11,776 KB |
testcase_11 | AC | 181 ms
11,776 KB |
testcase_12 | AC | 169 ms
12,684 KB |
testcase_13 | AC | 163 ms
12,808 KB |
testcase_14 | AC | 168 ms
12,808 KB |
testcase_15 | AC | 165 ms
12,804 KB |
testcase_16 | AC | 171 ms
12,808 KB |
testcase_17 | AC | 188 ms
12,160 KB |
testcase_18 | AC | 179 ms
12,160 KB |
testcase_19 | AC | 181 ms
12,288 KB |
testcase_20 | AC | 183 ms
12,160 KB |
testcase_21 | AC | 183 ms
12,288 KB |
ソースコード
#include <cmath> #include <vector> #include <iostream> #include <algorithm> #include <set> #include <iomanip> #include <numeric> #include <queue> #include <string> #include <map> #include <fstream> #include <cassert> #include <stack> int main() { int n; std::cin >> n; std::vector<int> remove_score(n), rest_score(n); for (auto& a : remove_score) std::cin >> a; for (auto& b : rest_score) std::cin >> b; std::vector<std::vector<int>> nodes(n); for (auto i = 1; i < n; ++i) { int u, v; std::cin >> u >> v; --u; --v; nodes[u].push_back(v); nodes[v].push_back(u); } std::vector<int> parent(n, -1), node_count(n, 0); std::queue<int> queue; queue.push(0); while (!queue.empty()) { const auto front = queue.front(); queue.pop(); node_count[front] = nodes[front].size(); for (const auto to : nodes[front]) { if (node_count[to] == 0) { queue.push(to); parent[to] = front; } } } std::vector<long long int> remove(n), not_remove(n, 0); for (auto i = 0; i < n; ++i) { if (i > 0 && node_count[i] == 1) queue.push(i); remove[i] = remove_score[i]; } while (!queue.empty()) { const auto front = queue.front(); queue.pop(); for (const auto child : nodes[front]) if (parent[front] != child) { not_remove[front] += std::max(not_remove[child] + rest_score[front] + rest_score[child], remove[child]); remove[front] += std::max(not_remove[child], remove[child]); } if (parent[front] > 0 && --node_count[parent[front]] == 1) { queue.push(parent[front]); } if (parent[front] == 0 && --node_count[0] == 0) { queue.push(0); } } std::cout << std::max(remove[0], not_remove[0]) << '\n'; }