結果
問題 | No.1221 木 *= 3 |
ユーザー | poohbear |
提出日時 | 2020-09-04 22:44:47 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 159 ms / 2,000 ms |
コード長 | 1,122 bytes |
コンパイル時間 | 1,942 ms |
コンパイル使用メモリ | 207,296 KB |
実行使用メモリ | 19,712 KB |
最終ジャッジ日時 | 2024-05-05 03:19:14 |
合計ジャッジ時間 | 5,417 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 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 | 1 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 158 ms
19,712 KB |
testcase_08 | AC | 155 ms
19,328 KB |
testcase_09 | AC | 151 ms
19,584 KB |
testcase_10 | AC | 147 ms
19,456 KB |
testcase_11 | AC | 154 ms
19,584 KB |
testcase_12 | AC | 149 ms
12,184 KB |
testcase_13 | AC | 146 ms
12,184 KB |
testcase_14 | AC | 146 ms
12,184 KB |
testcase_15 | AC | 145 ms
12,180 KB |
testcase_16 | AC | 141 ms
12,188 KB |
testcase_17 | AC | 152 ms
11,904 KB |
testcase_18 | AC | 149 ms
11,904 KB |
testcase_19 | AC | 148 ms
11,904 KB |
testcase_20 | AC | 159 ms
11,904 KB |
testcase_21 | AC | 148 ms
11,904 KB |
ソースコード
#include <bits/stdc++.h> #define rep(a,n) for (int a = 0; a < (n); ++a) using namespace std; using ll = long long; typedef pair<int,int> P; typedef pair<ll,P> PP; typedef vector<vector<int> > Graph; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } const ll INF = 1e18; ll dp[100010][2]; Graph g; vector<ll>a,b; void dfs(int v,int p=-1){ ll res1 = 0; ll res0 = 0; for(int i=0;i<g[v].size();i++){ int x = g[v][i]; if(x==p)continue; dfs(x,v); res1 += max(dp[x][0],dp[x][1]+b[x]+b[v]); res0 += max(dp[x][0],dp[x][1]); } res0 += a[v]; dp[v][0]=res0; dp[v][1]=res1; return; } int main(){ ll n; cin >> n; a.resize(n); b.resize(n); rep(i,n)cin>>a[i]; rep(i,n)cin>>b[i]; g.resize(n); rep(i,n-1){ ll u,v; cin >> u >> v; u--;v--; g[u].push_back(v); g[v].push_back(u); } dfs(0); cout << max(dp[0][0],dp[0][1]) << endl; return 0; }