QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#186185#6438. CrystalflyshimemingWA 109ms3820kbC++202.3kb2023-09-23 11:30:232023-09-23 11:30:23

Judging History

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

  • [2023-09-23 11:30:23]
  • 评测
  • 测评结果:WA
  • 用时:109ms
  • 内存:3820kb
  • [2023-09-23 11:30:23]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
#define debug(x) {cerr << #x << " = " << x << '\n'; }
 
#define X first
#define Y second
#define pb push_back
#define int long long
 
const int MAXN = 1e5+5;
int n;
ll a[MAXN];
int t[MAXN];
vector<vector<int>> G;
vector<ll> dp;
 
ll dfs(int ind, int p) {
  assert(n!=1);
  if (ind != 0 && G[ind].size() == 1) {
    return 0;
  }
  if (dp[ind] != 0) return dp[ind];
  ll rt = -1;
  ll sum = 0, maxn = -1, maxn31 = -1, maxn32 = -1;
  vector<pair<int, ll>> sub;
  for (int i : G[ind]) {
    if (i == p) continue;
    int tmp = dfs(i, ind);
    sub.pb({i, tmp});
    sum += tmp;
    if (maxn == -1 || a[i] > a[maxn]) maxn = i;
    if (t[i] == 3) {
      if (maxn32 == -1 || a[i] >= a[maxn32]) {
        maxn32 = i;
        if (maxn31 == -1 || a[maxn32] >= a[maxn31]) swap(maxn31, maxn32);
      }
    }
  }
  rt = sum + a[maxn];
  // debug(ind);
  // debug(rt);
  if (G[ind].size() > 2) {
    // debug(ind);
    int s1 = -1, s2 = -1;
    auto diff = [&](int k) { return a[sub[k].X]-sub[k].Y; };
    for (int i = 0; i < (int)sub.size(); i++) {
      if (s2 == -1 || diff(i) >= diff(s2)) {
        s2 = i;
        if (s1 == -1 || diff(s2) >= diff(s1)) swap(s1, s2);
      }
    }
    if (maxn31 != -1) {
      // debug(maxn31);
      // debug(sub[s1].X);
      // debug(sub[s2].X);
      if (sub[s1].X != maxn31) {
        rt = max(rt, sum+a[maxn31]+a[sub[s1].X]-sub[s1].Y);
      } else {
        rt = max(rt, sum+a[maxn31]+a[sub[s2].X]-sub[s2].Y);
        if (maxn32 != -1) {
          rt = max(rt, sum+a[maxn32]+a[sub[s1].X]-sub[s1].Y);
        }
      }
    }
  }
  dp[ind] = rt;
  return rt;
}
 
signed main(){
  ios::sync_with_stdio(0);
  cin.tie(0);
  int T; cin >> T;
  while (T--) {
    cin >> n;
    G.resize(n+1);
    dp.resize(n+1);
    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-1; i++) {
      int x, y; cin >> x >> y;
      G[x].pb(y);
      G[y].pb(x);
    }
    if (n == 1) {
      cout << a[1] << '\n';
      continue;
    }
    t[1] = 2;
    G[0].pb(1);
    G[1].pb(0);
    dfs(0, -1);
    cout << dp[0] << '\n';
    G.clear();
    dp.clear();
  }
  return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 3820kb

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: 0
Accepted
time: 0ms
memory: 3628kb

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
56
31
14
16
28
19
19

result:

ok 10 numbers

Test #3:

score: -100
Wrong Answer
time: 109ms
memory: 3612kb

input:

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

output:

49
12
41
45
8
4
38
22
20
21
5
19
23
44
26
5
21
28
28
32
36
15
5
26
38
36
20
35
27
36
20
9
32
32
22
11
41
15
20
54
38
20
45
36
20
29
24
4
37
44
30
44
17
17
36
29
3
6
24
44
25
28
49
13
5
1
44
27
17
21
15
17
17
24
29
39
10
39
38
26
22
24
9
17
41
7
28
33
51
18
14
14
7
35
23
13
11
43
30
24
35
2
43
33
17
...

result:

wrong answer 52nd numbers differ - expected: '45', found: '44'