結果

問題 No.1221 木 *= 3
ユーザー anagohirameanagohirame
提出日時 2020-08-22 01:23:46
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 180 ms / 2,000 ms
コード長 667 bytes
コンパイル時間 2,611 ms
コンパイル使用メモリ 207,148 KB
実行使用メモリ 18,304 KB
最終ジャッジ日時 2024-11-15 16:17:47
合計ジャッジ時間 6,482 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
8,704 KB
testcase_01 AC 5 ms
8,696 KB
testcase_02 AC 6 ms
8,704 KB
testcase_03 AC 6 ms
8,704 KB
testcase_04 AC 6 ms
8,792 KB
testcase_05 AC 6 ms
8,832 KB
testcase_06 AC 6 ms
8,704 KB
testcase_07 AC 180 ms
18,304 KB
testcase_08 AC 176 ms
18,176 KB
testcase_09 AC 176 ms
18,304 KB
testcase_10 AC 179 ms
18,176 KB
testcase_11 AC 179 ms
18,304 KB
testcase_12 AC 167 ms
12,344 KB
testcase_13 AC 161 ms
12,220 KB
testcase_14 AC 163 ms
12,212 KB
testcase_15 AC 164 ms
12,216 KB
testcase_16 AC 165 ms
12,216 KB
testcase_17 AC 174 ms
11,904 KB
testcase_18 AC 169 ms
11,904 KB
testcase_19 AC 172 ms
11,904 KB
testcase_20 AC 172 ms
11,904 KB
testcase_21 AC 174 ms
11,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;

int MAX = 100010;

vector<ll> dp0(MAX, 0), dp1(MAX, 0), a(MAX), b(MAX);
vector<vector<int>> adj(MAX);

void dfs(int i, int p) {
	dp0[i] += a[i];
	for (int j : adj[i]) {
		if (j == p) continue;
		dfs(j, i);
		dp0[i] += max(dp0[j], dp1[j]);
		dp1[i] += max(dp0[j], dp1[j] + b[i] + b[j]);
	}
	return;
}

int main() {
	int n; cin >> n;
	for (int i = 0; i < n; ++i) cin >> a[i];
	for (int i = 0; i < n; ++i) cin >> b[i];
	for (int i = 0; i < n-1; ++i) {
		int u, v; cin >> u >> v; u--; v--;
		adj[u].push_back(v);
		adj[v].push_back(u);
	}
	dfs(0, -1);
	cout << max(dp0[0], dp1[0]) << endl;
	return 0;
}
0