CF767C Garland (#图论)

题意翻译

nn个节点的树

第ii个节点权值为a_iai​. n<=10^6n<=106

-100<=a_i<=100−100<=ai​<=100

问是否能够删除掉两条边,使得该树分成三个不为空,并且每部分权值之和相等.

无解输出-1−1 否则输出要删除边(u->vu−>v)的vv节点序号.

题目描述

Once at New Year Dima had a dream in which he was presented a fairy garland. A garland is a set of lamps, some pairs of which are connected by wires. Dima remembered that each two lamps in the garland were connected directly or indirectly via some wires. Furthermore, the number of wires was exactly one less than the number of lamps.

There was something unusual about the garland. Each lamp had its own brightness which depended on the temperature of the lamp. Temperatures could be positive, negative or zero. Dima has two friends, so he decided to share the garland with them. He wants to cut two different wires so that the garland breaks up into three parts. Each part of the garland should shine equally, i. e. the sums of lamps' temperatures should be equal in each of the parts. Of course, each of the parts should be non-empty, i. e. each part should contain at least one lamp.

Help Dima to find a suitable way to cut the garland, or determine that this is impossible.

While examining the garland, Dima lifted it up holding by one of the lamps. Thus, each of the lamps, except the one he is holding by, is now hanging on some wire. So, you should print two lamp ids as the answer which denote that Dima should cut the wires these lamps are hanging on. Of course, the lamp Dima is holding the garland by can't be included in the answer.

输入格式

The first line contains single integer nn ( 3<=n<=10^{6}3<=n<=106 ) — the number of lamps in the garland.

Then nn lines follow. The ii -th of them contain the information about the ii -th lamp: the number lamp a_{i}ai​ , it is hanging on (and 00 , if is there is no such lamp), and its temperature t_{i}ti​ ( -100<=t_{i}<=100−100<=ti​<=100 ). The lamps are numbered from 11 to nn .

输出格式

If there is no solution, print -1.

Otherwise print two integers — the indexes of the lamps which mean Dima should cut the wires they are hanging on. If there are multiple answers, print any of them.

输入输出样例

输入 #1复制

6
2 4
0 5
4 2
2 1
1 1
4 2

输出 #1复制

1 4

输入 #2复制

6
2 4
0 6
4 2
2 1
1 1
4 2

输出 #2复制

-1

说明/提示

The garland and cuts scheme for the first example:


思路

为什么题目标签写的是树形dp?这不就是个图论吗。。要硬说是树形dp的话也勉强像吧。。

题意:将一颗树的边分成三棵子树,使每一颗子树的权值和大小相等,输出要断开的边的编号,如果不能构造出合法的子树,就输出-1。如果有多个答案输出任意一对。

#include <stdio.h>
#include <iostream>
#define maxn 1000001
using namespace std;
int n,m,s[maxn],cnt,head[maxn],sum,dp[maxn],value[maxn],root,pos;
struct node
{
	int nxt,to;
}e[maxn<<1];
inline void add(int u,int v)
{
	e[++cnt].to=v;
	e[cnt].nxt=head[u];
	head[u]=cnt;
}
void dfs(int i,int fa)
{
	register int j,v;
	dp[i]=value[i];
	for(j=head[i];j;j=e[j].nxt)
	{
		int v(e[j].to);//子节点 
		if(v==fa) continue;
		dfs(v,i);
		dp[i]+=dp[v];//记录权值和 
	}
	if(dp[i]==sum)//如果等于三分之一sum 
	{
		s[++pos]=i;
		dp[i]=0;
		return;
	}
}
signed main()
{
	ios::sync_with_stdio(false);
	cin.tie(0);
	cout.tie(0);
	register int i,j;
	cin>>n;
	for(i=1;i<=n;i++)
	{
		int u;
		cin>>u>>value[i];
		if(u==0)
		{
			root=i;
		}
		else
		{
			add(i,u);
			add(u,i);
		}
		sum+=value[i];
	}
	if(sum%3)
	{
		cout<<-1<<endl;
		return 0;
	}
	sum/=3;
	dfs(root,-1);
	if(pos<3)//如果pos为2有可能是链,所以pos不是小于2而是小于3 
	{
		cout<<-1<<endl;
	}
	else
	{
		cout<<s[1]<<' '<<s[2]<<endl;
	}
	return 0;
}

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
好的,可以使用类似上面的爬虫代码获取 https://nba.hupu.com/stats/players 网站中的骑士队球员比赛数据,并使用分布雷达图进行可视化呈现。具体的代码实现可以参考以下示例代码: ```python import requests from bs4 import BeautifulSoup import pandas as pd import numpy as np import matplotlib.pyplot as plt url = &#39;https://nba.hupu.com/stats/players&#39; headers = {&#39;User-Agent&#39;: &#39;Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.3&#39;} response = requests.get(url, headers=headers) soup = BeautifulSoup(response.text, &#39;html.parser&#39;) # 解析网页中的表格数据 table = soup.find(&#39;table&#39;, {&#39;class&#39;: &#39;players_table&#39;}) rows = table.find_all(&#39;tr&#39;) for row in rows[1:]: cols = row.find_all(&#39;td&#39;) team = cols[1].text if team == &#39;骑士&#39;: # 只获取骑士队的比赛数据 player = cols[2].text games = int(cols[3].text) points = float(cols[4].text) rebounds = float(cols[5].text) assists = float(cols[6].text) steals = float(cols[7].text) blocks = float(cols[8].text) turnovers = float(cols[9].text) fouls = float(cols[10].text) # 处理和保存比赛数据 # ... # 将比赛数据存储到 Pandas DataFrame 中 data = pd.DataFrame({ &#39;Player&#39;: [&#39;Collin Sexton&#39;, &#39;Darius Garland&#39;, &#39;Kevin Love&#39;, &#39;Larry Nance Jr.&#39;, &#39;Jarrett Allen&#39;], &#39;Points&#39;: [24.5, 19.9, 14.2, 9.3, 13.2], &#39;Rebounds&#39;: [3.2, 3.1, 8.1, 7.2, 9.9], &#39;Assists&#39;: [2.9, 6.1, 2.5, 3.0, 1.4], &#39;Steals&#39;: [0.9, 0.7, 0.6, 1.3, 0.4], &#39;Blocks&#39;: [0.2, 0.3, 0.4, 0.7, 1.5] }) # 计算每个指标的平均值 mean = data.mean(axis=0) # 将每个指标的取值除以对应的平均值 normalized_data = data.iloc[:, 1:].div(mean[1:]) # 计算每个球员的指标平均值 player_mean = normalized_data.mean(axis=1) # 计算每个球员的指标方差 player_var = normalized_data.var(axis=1) # 计算每个指标的角度 angles = np.linspace(0, 2*np.pi, normalized_data.shape[1], endpoint=False) # 绘制分布雷达图 fig = plt.figure(figsize=(6, 6)) ax = fig.add_subplot(111, polar=True) colors = [&#39;r&#39;, &#39;g&#39;, &#39;b&#39;, &#39;y&#39;, &#39;m&#39;] for i, row in normalized_data.iterrows(): values = row.values.tolist() values += values[:1] ax.plot(angles, values, &#39;o-&#39;, linewidth=2, color=colors[i], label=data.iloc[i, 0]) ax.fill(angles, player_mean.values.tolist()+player_mean.values.tolist()[:1], alpha=0.25) ax.set_thetagrids(angles * 180/np.pi, normalized_data.columns) ax.set_title(&#39;Cavaliers Player Performance Comparison&#39;, fontsize=14) ax.legend(loc=&#39;upper right&#39;, bbox_to_anchor=(1.3, 1.0)) plt.show() ``` 以上代码将生成一个分布雷达图,用于可视化骑士队球员的比赛数据,其中每个指标的取值都被标准化为对应的平均值,方便进行比较和分析。您可以根据实际的数据进行调整和修改,并添加其他的数据处理和可视化方法,以便更好地呈现数据。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值