結果

問題 No.1221 木 *= 3
ユーザー milanis48663220milanis48663220
提出日時 2020-09-04 22:24:26
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 999 bytes
コンパイル時間 742 ms
コンパイル使用メモリ 85,828 KB
実行使用メモリ 17,300 KB
最終ジャッジ日時 2024-05-04 23:39:06
合計ジャッジ時間 3,117 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,888 KB
testcase_01 AC 3 ms
5,760 KB
testcase_02 AC 3 ms
5,760 KB
testcase_03 AC 3 ms
5,760 KB
testcase_04 AC 3 ms
5,888 KB
testcase_05 AC 2 ms
5,760 KB
testcase_06 AC 3 ms
5,888 KB
testcase_07 AC 65 ms
17,300 KB
testcase_08 AC 64 ms
17,280 KB
testcase_09 AC 68 ms
17,216 KB
testcase_10 AC 68 ms
17,152 KB
testcase_11 AC 71 ms
17,280 KB
testcase_12 AC 58 ms
11,572 KB
testcase_13 AC 52 ms
11,572 KB
testcase_14 AC 55 ms
11,564 KB
testcase_15 AC 53 ms
11,568 KB
testcase_16 AC 54 ms
11,448 KB
testcase_17 AC 62 ms
12,288 KB
testcase_18 AC 62 ms
12,228 KB
testcase_19 AC 65 ms
12,160 KB
testcase_20 AC 63 ms
12,240 KB
testcase_21 AC 63 ms
12,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <iomanip>
#include <vector>
#include <queue>
#include <set>
#include <map>

using namespace std;
typedef long long ll;

int N;
ll a[100000];
ll b[100000];
bool used[100000];

vector<int> G[100000];
// dp1残す、dp2残さない
ll dp1[100000], dp2[100000];

const ll INF = 1e18;

void dfs(int v){
    used[v] = true;
    dp2[v] = a[v];
    ll max1 = -INF, max2 = -INF;
    for(int to : G[v]){
        if(!used[to]){
            dfs(to);
            dp1[v] += max(dp1[to]+b[to]+b[v], dp2[to]);
            dp2[v] += max(dp1[to], dp2[to]);
        }
    }
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout << setprecision(10) << fixed;
    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--;
        G[u].push_back(v);
        G[v].push_back(u);
    }
    dfs(0);
    cout << max(dp1[0], dp2[0]) << endl;
}
0