QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#338451#7816. 种树2023zll100 ✓564ms11420kbC++141.7kb2024-02-25 22:06:492024-02-25 22:06:50

Judging History

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

  • [2024-02-25 22:06:50]
  • 评测
  • 测评结果:100
  • 用时:564ms
  • 内存:11420kb
  • [2024-02-25 22:06:49]
  • 提交

answer

#include<algorithm>
#include<cstdio>
#include<cstring>
#include<queue>
typedef long long ll;
typedef __int128_t lll;
const int maxn=100000,inf=0x3f3f3f3f;
int n,head[maxn+1],total;
struct Edge{
	int to,next;
}e[(maxn-1)*2+1];
void add(const int u,const int v){
	e[++total]=Edge{v,head[u]};
	head[u]=total;
}
int fa[maxn+1],chcnt[maxn+1],tmp[maxn+1];
void dfs(const int u,const int from){
	fa[u]=from;
	chcnt[from]++;
	for(int i=head[u];i;i=e[i].next){
		const int v=e[i].to;
		if(v!=from)dfs(v,u);
	}
}
ll a[maxn+1];
int b[maxn+1],c[maxn+1],d[maxn+1],time[maxn+1];
std::priority_queue<std::pair<int,int>>q;
bool check(const int lim){
	memcpy(tmp+1,chcnt+1,sizeof(int)*n);
	for(int u=1;u<=n;u++){
		int l=0,r=lim,mid;
		lll sum;
		while(l<r){
			mid=(l+r+1)>>1;
			if(d[u]>lim)sum=ll(lim-mid+1)*b[u]+ll(lim+mid)*(lim-mid+1)/2*(lll)c[u];
			else if(d[u]<mid)sum=lim-mid+1;
			else sum=ll(d[u]-mid+1)*b[u]+ll(d[u]+mid)*(d[u]-mid+1)/2*(lll)c[u]+(lim-d[u]);
			if(sum>=a[u])l=mid;
			else r=mid-1;
		}
		if(l==0)return false;
		time[u]=l;
	}
	for(int u=1;u<=n;u++)
		if(chcnt[u]==0)
			q.emplace(time[u],u);
	int t=n;
	while(!q.empty()){
		const int u=q.top().second;
		q.pop();
		if(time[u]<t)return false;
		t--;
		if(fa[u]&&!(--tmp[fa[u]]))q.emplace(time[fa[u]],fa[u]);
	}
	return true;
}
int main(){
	//freopen("tree.in","r",stdin);
	//freopen("tree.out","w",stdout);
	scanf("%d",&n);
	for(int u=1;u<=n;u++){
		scanf("%lld%d%d",a+u,b+u,c+u);
		if(c[u]<0)d[u]=(b[u]-1)/(-c[u]);
		else d[u]=inf;
	}
	for(int i=1,u,v;i<n;i++){
		scanf("%d%d",&u,&v);
		add(u,v),add(v,u);
	}
	dfs(1,0);
	int l=n,r=1000000000,mid;
	while(l<r){
		mid=(l+r)>>1;
		if(check(mid))r=mid;
		else l=mid+1;
	}
	printf("%d\n",l);
	return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 5
Accepted
time: 1ms
memory: 5956kb

input:

19
17504574400613383 804340056 0
11404434099221265 524036995 0
4501303182232576 206836143 0
16722432340969341 768400608 0
9242175242163545 424680724 0
5982424224154348 274894135 0
13497298340940242 620204607 0
12416917749109322 570561236 0
19824012344280862 910919463 0
10845352638600258 498347020 0
...

output:

21762657

result:

ok single line: '21762657'

Test #2:

score: 5
Accepted
time: 1ms
memory: 7988kb

input:

20
610287562490950674 885730665 524863980
6465154937106138 125644983 10
25526148 86884815 -418052299
4878566359808986 698467722 -50
4346217306420974 456748134 -24
410451661036151236 866022801 555949789
296430095754312 185435049 -58
25779019751029177 231358373 61
9670756993083570 595829152 -17
431552...

output:

25526156

result:

ok single line: '25526156'

Test #3:

score: 5
Accepted
time: 1ms
memory: 5900kb

input:

20
8711196809241382 866431622 -26
12338190 56486490 -751942578
1592174753724827 319217044 -32
4992314209553308 484821039 -13
10779700847116122 404833961 76
2403722922189903 293525604 -16
873521103768048 347197602 -69
10178465446375981 769434836 9
2900422388953204 637228359 -70
53813051603 668492735 ...

output:

12338199

result:

ok single line: '12338199'

Test #4:

score: 5
Accepted
time: 1ms
memory: 7968kb

input:

19
33367539931450991 663203498 32
29424676 841039921 -405390549
29424671 179593001 -448755475
8599917315457196 27446701 18
1079974575 419422498 -54295744
767944283972635088 107310085 968205371
302566933069622961 143198850 277590648
23977603746286878 770743890 3
1625519517805099 99380443 -3
235074643...

output:

29424682

result:

ok single line: '29424682'

Test #5:

score: 5
Accepted
time: 2ms
memory: 7936kb

input:

483
13367341539676287 733769679 0
4211118081815869 231160151 0
10197866403063976 559790303 0
6121300699525614 336020709 0
1103617512499360 60581275 0
15425441323132413 846757437 0
4878271049470331 267784905 0
17931772118332105 984324337 0
9665280520811971 530561282 0
11403806139090960 625992042 0
16...

output:

18217358

result:

ok single line: '18217358'

Test #6:

score: 5
Accepted
time: 2ms
memory: 7960kb

input:

490
2984828998817324 291578429 0
6105552015228263 596444244 0
8525091497379773 832803177 0
9287427407126683 907295837 0
4445810810895144 434305864 0
7527368227697447 735333521 0
6496864359949274 634673243 0
1284767431414830 125506098 0
47991310760061 4688288 0
2581423123082609 252172843 0
4486538761...

output:

10236801

result:

ok single line: '10236801'

Test #7:

score: 5
Accepted
time: 416ms
memory: 10632kb

input:

98068
24736182085358185 936645750 0
3510371316587025 133264930 0
2292917642571107 86967621 0
20385507317903643 771954166 0
13497637843860286 511668127 0
23197997540820201 879450171 0
23107965873843730 877572279 0
5404839393304701 205069005 0
9234433283255686 349883761 0
16387675341715268 620654033 0...

output:

26409329

result:

ok single line: '26409329'

Test #8:

score: 5
Accepted
time: 380ms
memory: 10688kb

input:

98625
8390277748057767 747232900 0
2922897641415590 261954905 0
3203348914382647 286279270 0
3319100720474264 297738327 0
7629697862631957 680867145 0
7306521637407375 656425140 0
1438161774708376 128132185 0
6579576501710004 590320232 0
8940869930138178 799840795 0
5024215393336122 449233870 0
9747...

output:

11228465

result:

ok single line: '11228465'

Test #9:

score: 5
Accepted
time: 245ms
memory: 11380kb

input:

96952
6752323744453177 965308625 -69
4328169696116843 767223202 -68
17241656022550226 179775166 33
624155531180678 297708510 -71
187285846375965 139562908 -52
716579557551091036 414386386 547464358
18504131411192813 294297003 28
331637334883155207 948891999 379540451
27333757 390096717 -239512996
15...

output:

27333767

result:

ok single line: '27333767'

Test #10:

score: 5
Accepted
time: 230ms
memory: 11420kb

input:

96211
607050328098364 287330784 -68
424923421938 848483264 -842956
19786614719574227 728012369 36
7207630418730999 848977870 -50
7265447765886168 185596644 22
18613088 283225150 -220190926
7217233837552132 294684966 10
59831235573 815400612 -4994334
739994286920756 163217240 -18
32561133980 70984813...

output:

18613096

result:

ok single line: '18613096'

Test #11:

score: 5
Accepted
time: 342ms
memory: 10412kb

input:

97936
501442597788017836 97491864 516969001
21310552507704442 86363298 87
4547058185513703 705949370 -54
13187606873963218 900066454 -26
156294061414667 166101056 -82
1261403599318125 91370413 -3
601380658699048 256596875 -53
354430568524104830 269053350 832773317
12417268719533656 536045569 5
17134...

output:

21163203

result:

ok single line: '21163203'

Test #12:

score: 5
Accepted
time: 341ms
memory: 10512kb

input:

99503
83912131469047 46708859 -13
24160650459704263 725210751 -6
12248665607976536 991188394 -40
39859669 666496843 -369125808
9271625079448749 893423481 -43
34608071669415768 547418845 16
39346347291405991 866815614 6
23281993942850822 343658301 12
39869908 623077978 -2412934
3952712282806621 60504...

output:

39946379

result:

ok single line: '39946379'

Test #13:

score: 5
Accepted
time: 320ms
memory: 10128kb

input:

95591
333631479752719982 762809876 988690423
955856016313241845 856473148 38983018
15391869170844710 385163009 57
17434115 100601220 -804313
3300371942714826 180514304 1
12531097778773676 492457374 26
18127636259479227 820384904 25
17378632 425077684 -3883921
266485566978787379 910881610 11610984
17...

output:

17456324

result:

ok single line: '17456324'

Test #14:

score: 5
Accepted
time: 412ms
memory: 9676kb

input:

99722
28561842 316582396 -667867051
27359515427141082 860294481 7
47879901036919767 676764277 70
282969588868690 47902813 -4
13767161291064061 941731495 -32
14854658466549314 291972928 16
2515185989836 14495043 -39
40282022971868802 525243399 62
207112824723291568 560630689 868063396
28541899 132469...

output:

28561843

result:

ok single line: '28561843'

Test #15:

score: 5
Accepted
time: 420ms
memory: 9588kb

input:

96017
14193966715188693 936932959 1
13408120247693489 663369599 31
17392984679823849 956807908 27
1137625652734643 220559080 -21
15954679482681309 826038863 32
4253092435762905 442906604 -21
2913653950744919 352238815 -21
10202984698515340 665245293 2
1299085998655680 276228881 -29
43876261915902355...

output:

15028861

result:

ok single line: '15028861'

Test #16:

score: 5
Accepted
time: 564ms
memory: 9820kb

input:

97496
3399779480019378 583653359 28
2780779927926144 580176357 -15
393262568993511 45280150 12
2392453796784863 370410852 36
2238588345098511 515712055 -29
2193015172347022 469257248 -17
5157951 83795105 -792838592
5103282 690421968 -258727292
774041769065757266 495167170 87528302
4383299122073811 8...

output:

5181103

result:

ok single line: '5181103'

Test #17:

score: 5
Accepted
time: 358ms
memory: 10564kb

input:

97035
11138323876909669 858066681 -33
24927721 850332261 -3485476
13095087399763577 712788459 -15
21914965933872537 840546214 3
495836160603889519 211898658 226718454
24163138508550108 494755725 38
990455643700458015 965964130 717707292
12940889831380886 644004346 -10
23310168142949555 346823584 47
...

output:

24974881

result:

ok single line: '24974881'

Test #18:

score: 5
Accepted
time: 360ms
memory: 10580kb

input:

96904
47632912 461929503 -328698266
8560397922741897 945311099 -52
849971118104174667 174394009 949337793
612829294672280192 87547121 862577605
47547057 816886283 -1078226
2830467015314551 560575468 -55
977593027741067947 43812040 383130593
46080307672333653 967940186 0
45713386039150 66618812 -45
3...

output:

47632915

result:

ok single line: '47632915'

Test #19:

score: 5
Accepted
time: 442ms
memory: 10660kb

input:

98080
68084211018787514 517652918 77
24263075532003869 372227138 17
35862754 831800310 -718706296
23002196975998622 984591855 -19
6252941799598187 536771574 -23
44930975964002451 517659032 41
12544556688953478 511575465 -9
35767083 854443081 -883902575
35827924 569679806 -2369294
46970767015388971 8...

output:

35863814

result:

ok single line: '35863814'

Test #20:

score: 5
Accepted
time: 400ms
memory: 10672kb

input:

97616
7919030463690887 871910096 -48
58190337825439230 751836072 39
1077825882470901 212787459 -21
38594331 67280490 -365424
18374272772606903 610905948 -7
3282084729174615 575054091 -50
4432559463800591 798233315 -71
67585198658027 65388317 -31
54386737938232642 787901749 32
38594981 98843983 -6804...

output:

38678960

result:

ok single line: '38678960'