zoukankan      html  css  js  c++  java
  • CodeForces

    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.

    Input

    The first line contains single integer n (3 ≤ n ≤ 106) — the number of lamps in the garland.

    Then n lines follow. The i-th of them contain the information about the i-th lamp: the number lamp ai, it is hanging on (and 0, if is there is no such lamp), and its temperature ti ( - 100 ≤ ti ≤ 100). The lamps are numbered from 1 to n.

    Output

    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.

    Examples

    Input

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

    Output

    1 4
    

    Input

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

    Output

    -1
    

    Note

    The garland and cuts scheme for the first example:

    题意:给你一颗带权树,将这棵树分成三部分,使得每个部分权的和相等。

    分析:要分成三部分,首先必须保证整棵树的权(sum)能整除三,然后深度优先搜索,只要子树的和(sub_sum)等于sum/3,就计入答案。AC代码如下:

    #include <stdio.h>
    #include <vector>
    #include <algorithm>
    using namespace std;
    
    const int maxn = 1e6 + 5;
    int n, sum = 0, root;
    int temp[maxn];
    int sub_sum[maxn];
    vector<int>G[maxn];
    vector<int>ans;
    
    void dfs(int r, int fa)
    {
    	sub_sum[r] = temp[r];
    	for (int i = 0; i < G[r].size(); ++i)
    	{
    		int son = G[r][i];
    		dfs(son, root);
    		sub_sum[r] += sub_sum[son];
    	}
    	if (sub_sum[r] == sum && fa != 0)
    	{
    		sub_sum[r] = 0;
    		ans.push_back(r);
    		if (ans.size() == 2)
    		{
    			for (int i = 0; i < 2; ++i)
    				printf("%d ", ans[i]);
    			printf("
    ");
    			exit(0);//题目只需要一个解,要及时结束程序!
    		}
    	}
    }
    
    int main()
    {
    	scanf("%d", &n);
    	for (int i = 1; i <= n; ++i)
    	{
    		int a;
    		scanf("%d%d", &a, &temp[i]);
    		if (a == 0)root = i;
    		G[a].push_back(i);
    		sum += temp[i];
    	}
    	if (sum % 3 != 0)
    	{
    		printf("%d
    ", -1);
    		return 0;
    	}
    	sum /= 3;
    	dfs(root, 0);
    	printf("-1
    ");
    	return 0;
    }
  • 相关阅读:
    Python面试进阶问题,__init__和__new__的区别是什么?
    LeetCode 76,一题教会你面试算法时的思考套路
    LeetCode 75,90%的人想不出最佳解的简单题
    手把手带你入门numpy,从此数据处理不再慌【四】
    一次找出范围内的所有素数,埃式筛法是什么神仙算法?
    机器学习——十大数据挖掘之一的决策树CART算法
    TypeScript环境搭建
    ASP.NET 开源导入导出库Magicodes.IE 完成Excel图片导入导出
    【翻译】.NET 5 Preview 1 发布
    SuperBenchmarker一个用.NET编写的压测工具
  • 原文地址:https://www.cnblogs.com/theory/p/11884328.html
Copyright © 2011-2022 走看看