結果
問題 | No.1221 木 *= 3 |
ユーザー | yudedako |
提出日時 | 2020-09-05 15:25:08 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,638 bytes |
コンパイル時間 | 1,396 ms |
コンパイル使用メモリ | 120,636 KB |
実行使用メモリ | 12,804 KB |
最終ジャッジ日時 | 2024-11-28 16:25:07 |
合計ジャッジ時間 | 5,465 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 175 ms
11,776 KB |
testcase_08 | AC | 171 ms
11,776 KB |
testcase_09 | AC | 176 ms
11,776 KB |
testcase_10 | AC | 171 ms
11,776 KB |
testcase_11 | AC | 171 ms
11,776 KB |
testcase_12 | AC | 167 ms
12,676 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 163 ms
12,572 KB |
testcase_17 | AC | 174 ms
12,160 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 175 ms
12,160 KB |
testcase_21 | AC | 176 ms
12,160 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; } } } for (auto i = 0; i < n; ++i) { if (node_count[i] == 1) queue.push(i); } std::vector<long long int> remove(n), not_remove(n, 0); while (!queue.empty()) { const auto front = queue.front(); queue.pop(); remove[front] = remove_score[front]; 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'; }