QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#464842#6438. Crystalflyyounger#WA 1ms7624kbC++201.8kb2024-07-06 15:21:272024-07-06 15:21:27

Judging History

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

  • [2024-07-06 15:21:27]
  • 评测
  • 测评结果:WA
  • 用时:1ms
  • 内存:7624kb
  • [2024-07-06 15:21:27]
  • 提交

answer

#include<iostream>
#include<cstring>
#include<cmath>
#include<cstdio>
#include<vector>
#include<map>
#include<algorithm>
#include<queue>
#include <iomanip>

#pragma GCC optimize("Ofast,no-stack-protector,unroll-loops,fast-math")
#pragma GCC target("sse,sse2,sse3,ssse3,sse4.1,sse4.2,avx,avx2,popcnt,tune=native")
using namespace std;
typedef long long LL;
typedef __int128 i128;
typedef unsigned long long ULL;
typedef double db;

#define int long long
const int N = 1e5 + 10;
vector<int>e[N];
int n , a[N] , t[N] , f[N];

struct node {
    int u, f, t;
};

bool cmp(node a, node b)
{
    if (a.f != b.f) return a.f > b.f;
    else return a.t < b.t;
}

void dfs(int u , int fa){
    f[u] = a[u];
    vector<node> v;
    for (int i = 0; i < e[u].size(); i ++ )
    {
        int j = e[u][i];
        if (j == fa) continue;
        dfs(j, u);
        v.push_back({j, a[j], t[j]});
    }
    sort(v.begin(), v.end(), cmp);
    bool flag = false;
    for (int i = 0; i < v.size(); i ++ )
    {
        int j = v[i].u;
        if (i == 0) f[u] += f[j];
        else
        {
            if (v[i].t == 3 && !flag) f[u] += f[j];
            else f[u] += f[j] - a[j];
            if (v[i].t == 3) flag = true;
        }
    }
}

void Asuka()
{
    cin >> n;
    for(int i = 1 ; i <= n ; i ++){
        cin >> a[i];
        f[i] = 0;
        e[i].clear();
    }
    for(int i = 1 ; i <= n ; i ++)
        cin >> t[i];
    for(int i = 1 ; i < n ; i ++){
        int a , b;
        cin >> a >> b;
        e[a].emplace_back(b);
        e[b].emplace_back(a);
    }
    dfs(1 , -1);
    cout << f[1] << '\n';
    return;
}

signed main()
{
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);

    int t = 1;
    cin >> t;
    while(t --){
        Asuka();
    }
    return 0;
} 

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

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: 7624kb

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
62
31
15
16
28
19
19

result:

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