QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#464883#6438. Crystalflyyounger#WA 0ms7704kbC++202.0kb2024-07-06 15:40:402024-07-06 15:40:41

Judging History

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

  • [2024-07-06 15:40:41]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:7704kb
  • [2024-07-06 15:40:40]
  • 提交

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] , g[N];

void dfs(int u , int fa){
	int maxn1 = 0 , maxn2 = 0 , sum = 0;
	for(auto j : e[u]){
		if(j == fa)continue;
		// if(u == 7){
			// cout << j << "hhhhh\n";
		// }
		if(a[j] > maxn1){
			maxn2 = maxn1;
			maxn1 = a[j];
		}else if(a[j] > maxn2){
			maxn2 = a[j];
		}
		dfs(j , u);
		g[u] += g[j];
		sum += g[j];
	}
	int maxn = 0;
	// cout << u << ' ' << maxn1 << ' ' << maxn2 << ' ' << sum << '\n';
	for(auto j : e[u]){
		if(j == fa)continue;
		if(t[j] == 3){
			if(a[j] == maxn1){
				f[u] = max(f[u] , maxn2 + sum + a[j]);
				g[u] = max(g[u] , a[j] + maxn2 + sum);
			}else{
				f[u] = max(f[u] , maxn1 + sum + a[j]);
				g[u] = max(g[u] , a[j] + maxn1 + sum);
			}
		}else{
			// if(a[j] != maxn1){
			f[u] = max(f[u] , sum + maxn1);
			g[u] = max(g[u] , maxn1 + sum);
			// }
			// else{
			// 	f[u] = max(f[u] , sum + maxn2);
			// 	g[u] = max(g[u] , maxn2 + sum);
			// }
		}
	}
	f[u] += a[u];
	return;
}

void Asuka()
{
	cin >> n;
	for(int i = 1 ; i <= n ; i ++){
		cin >> a[i];
		g[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);
	// for(int i = 1 ; i <= n ; i ++){
	// 	cout << f[i] << ' ';
	// }
	// cout << '\n';
	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;
}

详细

Test #1:

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

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: 0ms
memory: 7644kb

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'