国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學(xué)院 > 開發(fā)設(shè)計 > 正文

Codeforces Round #398 (Div. 2)C

2019-11-08 02:17:00
字體:
供稿:網(wǎng)友

C. Garland time limit per test2 seconds memory limit per test256 megabytes inputstandard input outputstandard output 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:

#include <cstdio>#include <vector>#include <cstring>using namespace std;#define pb push_backconst int N=1234567;vector<int> v[N];vector<int> num;int h[N];int foo[N],too[N];//foo[i]表示第i個節(jié)點的權(quán)值,too[i]表示以第i個節(jié)點為根節(jié)點的子樹的權(quán)值int dfs(int k,int ans){ for(int i=0;i<v[k].size();i++){ int to=v[k][i]; too[k]+=dfs(to,ans); } if(too[k]==ans&&h[k]!=0){ num.pb(k); too[k]=0; } return too[k];}int main(){ int n; int sum=0; scanf("%d",&n); memset(foo,0,sizeof(foo)); memset(too,0,sizeof(too)); memset(h,0,sizeof(h)); for(int i=1;i<=n;i++){ scanf("%d%d",&h[i],&foo[i]); too[i]=foo[i]; v[h[i]].pb(i); sum+=foo[i]; } num.clear(); if(sum%3) return 0*puts("-1"); for(int i=1;i<=n;i++){ if(h[i]==0){ dfs(i,sum/3); } } if(num.size()>=2) printf("%d %d/n",num[0],num[1]); else puts("-1"); return 0;}
發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 太白县| 阳泉市| 龙山县| 阳谷县| 泾阳县| 西乌| 兰考县| 东宁县| 静安区| 大名县| 老河口市| 和田市| 冀州市| 深州市| 黄龙县| 岚皋县| 巧家县| 兴业县| 无棣县| 华安县| 侯马市| 旬阳县| 芦溪县| 淮安市| 西贡区| 雅江县| 哈尔滨市| 宣武区| 汕头市| 中阳县| 旺苍县| 襄汾县| 安福县| 朝阳区| 灌云县| 林甸县| 如皋市| 磐石市| 凤城市| 鄂伦春自治旗| 徐州市|