結果

問題 No.1221 木 *= 3
ユーザー bachoppibachoppi
提出日時 2020-09-05 16:30:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 197 ms / 2,000 ms
コード長 1,321 bytes
コンパイル時間 1,730 ms
コンパイル使用メモリ 128,536 KB
実行使用メモリ 22,528 KB
最終ジャッジ日時 2024-05-06 14:06:27
合計ジャッジ時間 5,712 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
7,236 KB
testcase_01 AC 3 ms
7,748 KB
testcase_02 AC 3 ms
7,748 KB
testcase_03 AC 3 ms
7,752 KB
testcase_04 AC 4 ms
7,988 KB
testcase_05 AC 4 ms
7,616 KB
testcase_06 AC 3 ms
7,236 KB
testcase_07 AC 187 ms
22,528 KB
testcase_08 AC 185 ms
22,056 KB
testcase_09 AC 186 ms
22,468 KB
testcase_10 AC 191 ms
22,208 KB
testcase_11 AC 193 ms
22,320 KB
testcase_12 AC 184 ms
14,484 KB
testcase_13 AC 172 ms
14,492 KB
testcase_14 AC 176 ms
14,492 KB
testcase_15 AC 178 ms
14,488 KB
testcase_16 AC 177 ms
14,492 KB
testcase_17 AC 197 ms
12,232 KB
testcase_18 AC 185 ms
12,228 KB
testcase_19 AC 192 ms
12,360 KB
testcase_20 AC 195 ms
12,092 KB
testcase_21 AC 196 ms
12,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
#include<cstring>
#include<algorithm>
#include<vector>
#include<iomanip>
#include<math.h>
#include<complex>
#include<queue>
#include<deque>
#include<stack>
#include<map>
#include<set>
#include<bitset>
#include<functional>
#include<assert.h>
#include<numeric>
using namespace std;
#define REP(i,m,n) for(int i=(int)(m) ; i < (int) (n) ; ++i )
#define rep(i,n) REP(i,0,n)
using ll = long long;
const int inf=1e9+7;
const ll longinf=1LL<<60 ;
const ll mod=1e9+7 ;
#define PI 3.141592653589793

vector<int> to[101010];
ll dp[101010][2];
ll c[101010], b[101010];

void DFS(int a, int p){
  vector<pair<ll, int>> kurabe;
  dp[a][0] = c[a];
  for(auto k: to[a]){
    if(k==p) continue;
    DFS(k, a);
    kurabe.push_back({dp[k][1]+b[a]+b[k]-dp[k][0], k});
    if(dp[k][1]>dp[k][0]) dp[a][0]+=dp[k][1];
    else dp[a][0]+=dp[k][0];
    dp[a][1]+=dp[k][0];
  }
  sort(kurabe.begin(), kurabe.end(), greater<>());
  ll nyan = dp[a][1];
  rep(i, kurabe.size()){
    if(kurabe[i].first>0) dp[a][1]+=kurabe[i].first;
  }
}


int main(){
  int n; cin >> n; 
  rep(i, n) cin >> c[i];
  rep(i, n) cin >> b[i];
  rep(i, n-1){
    int u, v; cin >> u >> v; u--; v--;
    to[u].push_back(v); to[v].push_back(u);
  }
  DFS(0, -1);
  cout << max(dp[0][0], dp[0][1]) << endl;
  //cout << dp[0][1] << endl;
}
0