国产探花免费观看_亚洲丰满少妇自慰呻吟_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ā)表
主站蜘蛛池模板: 凤冈县| 称多县| 阳新县| 柯坪县| 敦煌市| 班戈县| 武城县| 苍溪县| 呼和浩特市| 乃东县| 抚远县| 桐城市| 昌宁县| 都兰县| 高雄市| 井冈山市| 罗定市| 西城区| 修水县| 章丘市| 全州县| 台北县| 阿合奇县| 宁南县| 衢州市| 长宁区| 高青县| 井陉县| 宣恩县| 察哈| 长垣县| 蒙城县| 平顶山市| 曲松县| 阿拉尔市| 霞浦县| 叙永县| 鸡泽县| 固始县| 图木舒克市| 巨鹿县|