QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#735797#9569. Subwayas_lyrWA 64ms309080kbC++142.0kb2024-11-11 21:43:492024-11-11 21:43:49

Judging History

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

  • [2024-11-11 21:43:49]
  • 评测
  • 测评结果:WA
  • 用时:64ms
  • 内存:309080kb
  • [2024-11-11 21:43:49]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int N=410000;
const ll INF=1e18;
int n,m;
int a[N],b[N];
int t,to[N],id[N];
vector <pair<int,int>> e[N];
vector <int> v[N];
deque <int> st[N];
int stp[N];
ll dis[N];
bool vis[N];
ll ans[N];
inline ll calc(int x,int y){
	return dis[x]+1ll*a[id[y]]*b[id[x]];
}
inline double slope(int x,int y){
	if(b[id[x]]==b[id[y]])
		return INF*(dis[x]>dis[y]);
	return -1.0*(dis[x]-dis[y])/(b[id[x]]-b[id[y]]);
}
int main(){
	scanf("%d%d",&n,&m);
	for(int i=1;i<=m;i++)
		scanf("%d",&a[i]);
	for(int i=1;i<=m;i++)
		scanf("%d",&b[i]);
	for(int i=1;i<=m;i++){
		int siz;
		scanf("%d",&siz);
		int lst;
		{
			int x;
			scanf("%d",&x);
			t++,to[t]=x,id[t]=i;
			v[x].push_back(t);
			lst=t;
		}
		for(int j=2;j<=siz;j++){
			int w,x;
			scanf("%d%d",&w,&x);
			t++,to[t]=x,id[t]=i;
			e[lst].push_back(make_pair(t,w));
			v[x].push_back(t);
			lst=t;
		}
	}
	for(int i=1;i<=n;i++){
		sort(v[i].begin(),v[i].end(),[](const int x,const int y){
			return a[id[x]]<a[id[y]];
		});
	}
	priority_queue <pair<ll,int>,vector<pair<ll,int>>,greater<pair<ll,int>>> pq;
	for(int i=1;i<=t;i++)
		if(to[i]==1)
			pq.push(make_pair(0,i));
		else
			dis[i]=INF;
	for(int i=1;i<=n;i++)
		ans[i]=INF;
	while(pq.empty()==0){
		int x=pq.top().second;
		pq.pop();
		if(vis[x])
			continue;
		vis[x]=1;
		int i=to[x];
		ans[i]=min(ans[i],dis[x]);
		while(stp[i]<(int)v[i].size()&&vis[v[i][stp[i]]])
			stp[i]++;
		if(stp[i]<(int)v[i].size()){
			int y=v[i][stp[i]];
			while(st[i].size()>1&&slope(st[i][st[i].size()-2],st[i].back())<slope(st[i].back(),x))
				st[i].pop_back();
			st[i].push_back(x);
			while(st[i].size()>1&&calc(st[i][0],y)>calc(st[i][1],y))
				st[i].pop_front();
			if(calc(st[i][0],y)<dis[y])
				pq.push(make_pair(dis[y]=calc(st[i][0],y),y));
		}
		for(auto pr:e[x]){
			int y=pr.first,z=pr.second;
			if(dis[x]+z<dis[y])
				pq.push(make_pair(dis[y]=dis[x]+z,y));
		}
	}
	for(int i=2;i<=n;i++)
		printf("%lld ",ans[i]);
	return 0;
}

詳細信息

Test #1:

score: 100
Accepted
time: 64ms
memory: 306656kb

input:

6 3
1 5 1
5 5 1
3 1 2 2 3 3
3 5 1 2 1 4
3 3 4 5 4 6

output:

2 5 21 14 18 

result:

ok 5 number(s): "2 5 21 14 18"

Test #2:

score: 0
Accepted
time: 47ms
memory: 306680kb

input:

6 3
1 5 1
5 5 1
5 1 2 2 100 3 100 6 1 4
5 1 100 2 4 3 100 5 1 4
2 3 1 5

output:

2 31 43 37 136 

result:

ok 5 number(s): "2 31 43 37 136"

Test #3:

score: 0
Accepted
time: 45ms
memory: 306728kb

input:

5 9
278281 70119 511791 834898 25300 63487 609134 236836 394497
835557 287345 579404 879128 636344 306393 569430 152565 47119
2 3 823004250 4
2 1 25427550 3
2 1 15849621 3
2 1 701911826 5
3 5 679672631 3 907176714 2
2 1 817370554 2
2 3 697987914 2
2 4 873900795 2
2 1 814305954 5

output:

817370554 15849621 80811085745 701911826 

result:

ok 4 number(s): "817370554 15849621 80811085745 701911826"

Test #4:

score: 0
Accepted
time: 59ms
memory: 306708kb

input:

5 10
436148 103565 528276 212202 680282 92724 609031 560815 80390 406327
546832 581372 731920 348686 791433 98906 112247 118131 361076 724950
4 1 213029090 4 415633732 5 581145231 3
2 4 306227294 2
2 1 713116112 4
2 3 99672714 5
2 3 975143846 1
5 4 249118026 5 689334413 1 597093740 2 553624319 3
3 4...

output:

597093740 765908995 213029090 628662822 

result:

ok 4 number(s): "597093740 765908995 213029090 628662822"

Test #5:

score: 0
Accepted
time: 51ms
memory: 308984kb

input:

3 5
696710 837216 390019 431068 960618
589388 829806 692481 154511 282620
2 1 711629163 3
2 1 781784306 3
2 1 686636041 3
2 3 794790206 2
2 1 844212542 2

output:

844212542 686636041 

result:

ok 2 number(s): "844212542 686636041"

Test #6:

score: 0
Accepted
time: 60ms
memory: 306944kb

input:

3 8
344877 101098 328614 735002 476606 635558 573861 261083
964379 333960 25186 276560 258996 683650 765559 582374
2 3 838262394 1
2 2 863940316 3
2 2 476918371 3
3 3 320092619 1 400754003 2
3 3 150885055 2 90507792 1
2 3 190275693 2
2 2 600234969 3
2 2 679446528 3

output:

400754003 29224357199 

result:

ok 2 number(s): "400754003 29224357199"

Test #7:

score: 0
Accepted
time: 47ms
memory: 306668kb

input:

50 52
895514 29433 851800 887860 340384 95967 506578 666268 850660 602220 717255 242039 34055 752012 248567 170469 505996 823344 143369 390858 112988 892365 15368 617804 351619 557340 788960 990487 283825 272924 24678 130649 341049 980236 558990 254726 682005 963825 953074 603477 706464 340694 23541...

output:

632126151 479346918 492618840 3695787776 22624579200 174047740 416387993526 21429733469 15831777447 203893499 522142321620 977566721 279122223 30345963113 804573598 73397618725 6389037892 224856032596 416404080694 75356833904 69909552850 4504114918 13173874327 1104455938 275720760247 136977429637 22...

result:

ok 49 numbers

Test #8:

score: 0
Accepted
time: 44ms
memory: 307000kb

input:

50 186
909405 536090 349598 989013 812836 176449 79855 101754 179492 328610 751840 298905 429840 327083 222463 770826 222448 679356 524717 759894 186015 464746 390432 205629 893518 619709 777762 985329 612480 308146 507216 337177 463052 10105 150939 411855 75743 831031 391242 914978 198839 259846 36...

output:

279207921 30546650 3955157971 366881738 678883775 822326137 828131153 510756214 2799968412 2039093375 2727811374 2032421076 1966318841 894245748 2686792493 218322703 721713806 962052764 2586140415 201519887 722596289 49603757 329009601 562632121 73396118 399363911 1252345566 631600417 106456928 5055...

result:

ok 49 numbers

Test #9:

score: 0
Accepted
time: 44ms
memory: 309080kb

input:

50 746
109522 187240 733057 796323 66411 270785 937748 93610 470338 557856 166396 453860 431444 832088 13928 85925 15012 650718 328138 113957 812853 420621 146202 494017 985809 97315 96915 329400 118469 310530 501365 375790 461794 395440 784193 383084 825278 651991 584960 198686 644465 936326 856317...

output:

108689636 452441994 85834082 194842954 1581446 78212329 192476904 317795566 17889600 204753389 160234611 32867254 60240077 5211225 59666696 182239665 3783349 260084869 211347631 275823469 278103417 62390636 110457213 390191494 14670321 1101923 516180268 190362002 66561551 565544855 21826762 21720545...

result:

ok 49 numbers

Test #10:

score: 0
Accepted
time: 63ms
memory: 307000kb

input:

100 241
564812 561763 140723 436240 394309 44156 384984 144017 947539 422591 408747 362914 763371 162274 318323 676445 200578 532099 333815 768706 880020 140834 689221 544561 536480 764898 626990 221618 173930 13451 775752 248365 66936 533899 658027 131826 28438 795120 203253 433075 523346 599087 67...

output:

267913444 25339157310 8314344093 5464367180 1286326436 90461126 8907606133 16347606802 14711829080 8971431750 170752878 397694350 1037375748 18879356054 1501065529 2069064987 9584178341 17014391217 903970115 490753396 1632578522 10191345537 26994814823 2195645069 11593917652 17481016054 759764904 72...

result:

ok 99 numbers

Test #11:

score: 0
Accepted
time: 56ms
memory: 307000kb

input:

100 909
354490 607942 638780 621647 693678 345069 712251 189946 997948 842605 432303 208309 279462 858887 48769 974330 209759 652626 989265 72153 199248 326709 19953 978295 817366 854640 719591 770122 370818 808084 794671 257438 367000 694918 70071 168530 368273 624129 870946 439004 183705 785489 77...

output:

333297663 399355935 1059814556 1107743829 1427474071 696020875 353795528 459479343 659808640 1241037904 609650958 1306280384 377707905 26924777 786395257 123000005 1573062540 17829641 1567227849 189812239 370915753 928681025 89799511 815276047 135696305 515669937 942621003 445110058 86765197 1037062...

result:

ok 99 numbers

Test #12:

score: -100
Wrong Answer
time: 47ms
memory: 307204kb

input:

1000 1789
943374 138795 977938 443021 385160 611446 873697 123265 14099 169470 105296 236046 377530 677105 433109 673693 542845 669265 772059 343016 454867 119346 90752 210176 359971 736639 253271 241927 403402 177845 24872 969078 397336 60325 932971 633624 626450 101687 358225 707661 256242 599586 ...

output:

695358284 57840977 47729563480 435035512 53612876532 26933106204 4709406363 97679790525 119919863949 78014553223 324259812 40737969101 825514049 152856002235 25891521677 92733560736 98950794057 182569608 369133896 55806982817 16885319597 88498741741 97389552431 60549132289 77437996874 11273252242 56...

result:

wrong answer 23rd numbers differ - expected: '90610242716', found: '97389552431'