結果

問題 No.1221 木 *= 3
ユーザー chocono2230chocono2230
提出日時 2020-09-04 23:28:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,088 bytes
コンパイル時間 2,902 ms
コンパイル使用メモリ 210,804 KB
実行使用メモリ 20,992 KB
最終ジャッジ日時 2024-05-05 03:41:05
合計ジャッジ時間 6,557 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 WA -
testcase_08 AC 186 ms
20,352 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 166 ms
10,760 KB
testcase_14 AC 172 ms
10,760 KB
testcase_15 AC 174 ms
10,760 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 191 ms
10,496 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i = 0; i < (int)(n); i++)
#define rrep(ri,n) for(int ri = (int)(n-1); ri >= 0; ri--)
#define rep2(i,x,n) for(int i = (int)(x); i < (int)(n); i++)
#define rrep2(ri,x,n) for(int ri = (int)(n-1); ri >= (int)(x); ri--)
#define repit(itr,x) for(auto itr = x.begin(); itr != x.end(); itr++)
#define rrepit(ritr,x) for(auto ritr = x.rbegin(); ritr != x.rend(); ritr++)
#define ALL(x) x.begin(), x.end()
using ll = long long;
using namespace std;

void dfs(vector<vector<int>> &tree, vector<int> &b, vector<ll> &po, int now, int bf){
  po.at(now) = (ll)tree.at(now).size() * b.at(now);
  for(auto i : tree.at(now)){
    po.at(now) += b.at(i);
    if(i == bf) continue;
    dfs(tree, b, po, i, now);
  }
}

void fc(vector<vector<int>> &tree, vector<int> &b, vector<ll> &po, vector<bool> &chk, vector<int> &a, int now){
  chk.at(now) = true;
  for(auto i : tree.at(now)){
    if(chk.at(i) == true) continue;
    po.at(i) -= b.at(i);
    if(po.at(i) < a.at(i)){
      fc(tree, b, po, chk, a, i);
    }
  }
}

void dfs2(vector<vector<int>> &tree, vector<int> &a, vector<int> &b, vector<bool> &chk, int now, int bf, ll &ans){
  ll tmp = 0;
  if(chk.at(now) == true){
    ans += a.at(now);
    tmp += a.at(now);
  }
  for(auto i : tree.at(now)){
    if(chk.at(now) == false && chk.at(i) == false){
      ans += b.at(now);
      tmp += b.at(now);
    }
    if(i == bf) continue;
    dfs2(tree, a, b, chk, i, now, ans);
  }
  // cerr << now << " " << tmp << endl;
}

int main(){
  int n;
  cin >> n;
  vector<int> a(n);
  rep(i, n) cin >> a.at(i);
  vector<int> b(n);
  rep(i, n) cin >> b.at(i);
  vector<vector<int>> tree(n, vector<int>());
  rep(i, n-1){
    int a, b;
    cin >> a >> b;
    a--; b--;
    tree.at(a).push_back(b);
    tree.at(b).push_back(a);
  }
  vector<bool> chk(n, false);
  vector<ll> po(n, 0);
  dfs(tree, b, po, 0, -1);
  rep(i, n){
    if(chk.at(i) == true) continue;
    if(po.at(i) < a.at(i)){
      fc(tree, b, po, chk, a, i);
    }
  }
  ll ans = 0;
  dfs2(tree, a, b, chk, 0, -1, ans);
  cout << ans << endl;
  return 0;
}
0