結果

問題 No.1221 木 *= 3
ユーザー sapphire__15sapphire__15
提出日時 2021-11-17 18:24:20
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 184 ms / 2,000 ms
コード長 828 bytes
コンパイル時間 798 ms
コンパイル使用メモリ 74,240 KB
実行使用メモリ 17,736 KB
最終ジャッジ日時 2024-06-06 07:33:17
合計ジャッジ時間 5,423 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,812 KB
testcase_01 AC 3 ms
7,496 KB
testcase_02 AC 3 ms
6,816 KB
testcase_03 AC 3 ms
6,944 KB
testcase_04 AC 3 ms
6,940 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 3 ms
6,944 KB
testcase_07 AC 183 ms
17,732 KB
testcase_08 AC 180 ms
17,476 KB
testcase_09 AC 181 ms
17,732 KB
testcase_10 AC 181 ms
17,480 KB
testcase_11 AC 180 ms
17,736 KB
testcase_12 AC 168 ms
11,100 KB
testcase_13 AC 161 ms
11,148 KB
testcase_14 AC 167 ms
10,688 KB
testcase_15 AC 166 ms
10,760 KB
testcase_16 AC 165 ms
10,636 KB
testcase_17 AC 178 ms
11,328 KB
testcase_18 AC 181 ms
11,456 KB
testcase_19 AC 184 ms
11,416 KB
testcase_20 AC 180 ms
11,316 KB
testcase_21 AC 183 ms
11,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;

const int MAX_N = 100100;
int a[MAX_N];
int b[MAX_N];
vector<int> edge[MAX_N];
long long dp1[MAX_N]; // 消さないときの最大値
long long dp2[MAX_N]; // 消すときの最大値

void dfs(int crt, int parent = -1) {
    for(auto &i : edge[crt]) {
        if(i == parent) continue;
        dfs(i, crt);
        dp1[crt] += max(dp1[i] + b[crt] + b[i], dp2[i]);
        dp2[crt] += max(dp1[i], dp2[i]);
    }
    dp2[crt] += a[crt];
}

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;
        edge[u].push_back(v);
        edge[v].push_back(u);
    }
    dfs(0);
    cout << max(dp1[0], dp2[0]) << endl;
}
0