QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#608867#7816. 种树XuJunMing100 ✓766ms56184kbC++143.0kb2024-10-04 08:28:112024-10-04 08:28:12

Judging History

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

  • [2024-10-04 08:28:12]
  • 评测
  • 测评结果:100
  • 用时:766ms
  • 内存:56184kb
  • [2024-10-04 08:28:11]
  • 提交

answer

#include<stdio.h>
#include<algorithm>
#include<string.h>
#include<queue>
#include<map>
#define int __int128
using namespace std;
const int MAXN=5e5+5;
inline int read()
{
    int SS=0,WW=1;
    char ch=getchar();
    while(ch<'0'||ch>'9')
	{
        if(ch=='-')WW=-1;
        ch = getchar();
    }
    while(ch>='0'&&ch<='9')
	{
        SS=(SS<<1)+(SS<<3)+(ch^48);
        ch=getchar();
    }
    return SS*WW;
}
inline void write(int XX)
{
    if(XX<0)putchar('-'),XX=-XX;
    if(XX>9)write(XX/10);
    putchar(XX% 10 + '0');
}
int n,h[MAXN],ec,ans,p[MAXN],f[MAXN];
typedef pair<int,int> P;
queue<P>que;
struct Tree{
	int a,b,c,d;
}t[MAXN];
struct Edge{
	int u,v,nxt,w;
}e[MAXN];
struct Sort{
	int p,id;
}q[MAXN];
inline void Add(int u,int v)
{
	e[++ec].u=u,e[ec].v=v,e[ec].nxt=h[u];h[u]=ec;
	e[++ec].u=v,e[ec].v=u,e[ec].nxt=h[v];h[v]=ec;
}
inline int _count(int l,int r,int x)
{
	if(t[x].c>0)return (r-l+1)*t[x].b+(t[x].c*(r-l+1)*(r+l)>>1);
	else if(t[x].c==0)return (r-l+1)*t[x].b;
	else
	{
		if(l<t[x].d&&r>=t[x].d)return (r-t[x].d+1)+(t[x].d-l)*t[x].b+t[x].c*(t[x].d-l)*(t[x].d-1+l)/2;
		else if(t[x].d>r)return (r-l+1)*t[x].b+(t[x].c*(r-l+1)*(r+l)>>1);
		else if(t[x].d<=l)return (r-l+1);
	}
}
bool cmp(Sort A,Sort B)
{
	return A.p<B.p;
}
int vis[MAXN];
bool check(int m)
{
	memset(p,0,sizeof p);
	for(int i=1;i<=n;i++)
	{
		int l=0,r=m;
		if(_count(1,m,i)<t[i].a)return 0;
		while(l<r)
		{
			int mid=l+r>>1;
			if(_count(mid,m,i)>=t[i].a)l=mid+1,p[i]=mid;
			else r=mid;
		}
	}
//	for(int i=1;i<=n;i++)printf("+%d ",p[i]);puts("");
	for(int i=1;i<=n;i++)q[i].p=p[i],q[i].id=i;
	sort(q+1,q+1+n,cmp);memset(vis,0,sizeof vis);
	vis[1]=1;
	for(int i=1,time=1;i<=n;i++)
	{
		int tmp=q[i].id;
		int it=tmp,sum=0;
		while(!vis[it])sum++,it=f[it];
		it=tmp;
		while(!vis[it])vis[it]=time+sum,it=f[it];
		time=max(vis[tmp],time);
	}//for(int i=1;i<=n;i++)printf("%d->",vis[i]);puts("");
	for(int i=1;i<=n;i++)if(vis[i]>p[i])return 0;
	/*
	for(int i=1;i<=n;i++)printf("%lld ",p[i]);printf("%lld\n",m);
	int time=0;
	while(!que.empty())que.pop();
	que.push(P(p[1],1));
	while(!que.empty()){
		int px=que.top().first,id=que.top().second;
		que.pop();
		vis[id]=1;
		if((time++)>px)return 0;
		for(int i=h[id];i;i=e[i].nxt)
		{
			int v=e[i].v;
			if(!vis[v])que.push(P(p[v],v));
		}
	}*/
	return 1;
}
main()
{
//	freopen("tree.in","r",stdin);freopen("tree.out","w",stdout);
	n=read();
	for(int i=1;i<=n;i++)t[i].a=read(),t[i].b=read(),t[i].c=read();
	for(int i=1;i<=n;i++)if(t[i].c<0)t[i].d=(t[i].b-2)/-t[i].c+1;
	for(int i=1,u,v;i<n;i++)
	{
		u=read(),v=read();
		Add(u,v);
	}
	que.push(P(1,0));
	while(!que.empty())
	{
		int x=que.front().first,fa=que.front().second;
		que.pop();
		f[x]=fa;
		for(int i=h[x];i;i=e[i].nxt)
		{
			int v=e[i].v;
			if(v!=fa)que.push(P(v,x));
		}
	}
	int l=0,r=1e9;
	while(l<r)
	{
		int mid=l+r>>1;
		if(check(mid))ans=mid,r=mid;
		else l=mid+1;
	}
	write(ans);
	return 0;
}

详细


Pretests


Final Tests

Test #1:

score: 5
Accepted
time: 16ms
memory: 27372kb

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: 16ms
memory: 27316kb

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: 16ms
memory: 27308kb

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: 19ms
memory: 27412kb

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: 15ms
memory: 27372kb

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: 18ms
memory: 29460kb

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: 541ms
memory: 52000kb

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: 377ms
memory: 53788kb

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: 437ms
memory: 49532kb

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: 509ms
memory: 53652kb

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: 641ms
memory: 51404kb

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: 629ms
memory: 53384kb

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: 762ms
memory: 53412kb

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: 622ms
memory: 54192kb

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: 578ms
memory: 56184kb

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: 701ms
memory: 54040kb

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: 766ms
memory: 49732kb

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: 665ms
memory: 53816kb

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: 671ms
memory: 54088kb

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: 629ms
memory: 53892kb

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'