結果
問題 | No.1221 木 *= 3 |
ユーザー | tonyu0 |
提出日時 | 2020-09-04 22:45:23 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 839 bytes |
コンパイル時間 | 990 ms |
コンパイル使用メモリ | 111,168 KB |
実行使用メモリ | 11,432 KB |
最終ジャッジ日時 | 2024-11-26 20:39:36 |
合計ジャッジ時間 | 4,387 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | WA | - |
testcase_08 | AC | 148 ms
11,008 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 141 ms
11,432 KB |
testcase_14 | AC | 148 ms
11,428 KB |
testcase_15 | AC | 147 ms
11,432 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 154 ms
11,136 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
ソースコード
#include <algorithm> #include <cmath> #include <iomanip> #include <iostream> #include <map> #include <numeric> #include <vector> using namespace std; using ll = int64_t; #define rep(i, j, n) for (int i = j; i < (int)n; ++i) int main() { int n; cin >> n; vector<ll> a(n), b(n); rep(i, 0, n) cin >> a[i]; rep(i, 0, n) cin >> b[i]; vector<vector<int>> g(n); vector<ll> con(n); rep(i, 0, n - 1) { int u, v; cin >> u >> v; --u, --v; g[u].push_back(v); g[v].push_back(u); con[u]++; con[v]++; } ll all = 0; rep(i, 0, n) all += con[i] * b[i]; vector<bool> deleted(n); rep(i, 0, n) { ll add = a[i]; for (int j : g[i]) { if (!deleted[j]) { add -= b[i] + b[j]; } } if (add > 0) { all += add; deleted[i] = true; } } cout << all << '\n'; return 0; }