QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#797239#6438. CrystalflyFUCKUCUPWA 1ms5712kbC++201.1kb2024-12-02 19:47:112024-12-02 19:47:13

Judging History

你现在查看的是最新测评结果

  • [2024-12-02 19:47:13]
  • 评测
  • 测评结果:WA
  • 用时:1ms
  • 内存:5712kb
  • [2024-12-02 19:47:11]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
const int maxn = 100010;
int T, n, a[maxn], t[maxn];
long long f[maxn];
vector<int> g[maxn];
void dfs(int u, int pre) {
  f[u] = a[u];
  int mx = 0, cmx = 0;
  for(auto &v : g[u]) if(v != pre) {
    if(a[v] > mx) cmx = mx, mx = a[v];
    else if(a[v] > cmx) cmx = a[v];
    dfs(v, u);
  }
  for(auto &v : g[u]) if(v != pre) {
    f[u] = max(f[u], a[u] + f[v]);
    if(t[v] < 3) {
      if(a[v] == mx) f[u] = max(f[u], a[u] + cmx + f[v] - a[v]);
      else f[u] = max(f[u], a[u] + mx + f[v] - a[v]);
    } else {
      if(a[v] == mx) f[u] = max(f[u], a[u] + cmx + f[v]);
      else f[u] = max(f[u], a[u] + mx + f[v]);
    }
  }
}
inline void solve() {
  cin >> n;
  for(int i = 1; i <= n; ++i) cin >> a[i];
  for(int i = 1; i <= n; ++i) cin >> t[i];
  for(int i = 1; i < n; ++i) {
    int u, v;
    cin >> u >> v, g[u].push_back(v), g[v].push_back(u);
  }
  dfs(1, 0), cout << f[1] << '\n';
  for(int i = 1; i <= n; ++i) g[i].clear();
}
int main() {
  ios::sync_with_stdio(false), cin.tie(nullptr), cout.tie(nullptr);
  cin >> T;
  while(T--) solve();
  return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 1ms
memory: 5712kb

input:

2
5
1 10 100 1000 10000
1 2 1 1 1
1 2
1 3
2 4
2 5
5
1 10 100 1000 10000
1 3 1 1 1
1 2
1 3
2 4
2 5

output:

10101
10111

result:

ok 2 number(s): "10101 10111"

Test #2:

score: -100
Wrong Answer
time: 1ms
memory: 5632kb

input:

10
6
8 1 1 5 8 9
2 1 2 2 2 2
1 2
2 3
2 4
1 5
2 6
6
6 4 4 1 3 6
2 1 3 3 3 3
1 2
1 3
3 4
4 5
5 6
6
10 5 1 8 5 1
1 3 1 2 2 2
1 2
2 3
2 4
2 5
3 6
10
6 8 8 9 6 9 5 6 6 4
2 1 3 3 2 2 2 2 3 1
1 2
1 3
3 4
4 5
5 6
4 7
2 8
7 9
9 10
7
10 9 1 5 7 5 4
1 1 1 2 1 3 2
1 2
1 3
3 4
3 5
5 6
1 7
5
7 1 1 4 2
3 1 3 2 2
1...

output:

25
24
24
47
31
13
16
24
19
19

result:

wrong answer 4th numbers differ - expected: '56', found: '47'