QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#716030#9569. SubwayOIer_kzcWA 67ms84872kbC++174.3kb2024-11-06 14:07:432024-11-06 14:07:44

Judging History

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

  • [2024-11-06 14:07:44]
  • 评测
  • 测评结果:WA
  • 用时:67ms
  • 内存:84872kb
  • [2024-11-06 14:07:43]
  • 提交

answer

#include <stdio.h>
#include <string.h>
#include <assert.h>

#include <set>
#include <queue>
#include <algorithm>
#include <numeric>

#define LOG(FMT...) fprintf(stderr, FMT)

#define eb emplace_back
#define em emplace

using namespace std;

typedef long long LL;
constexpr int N = 400005;
constexpr LL INFLL = 0x3f3f3f3f3f3f3f3fll;

int n, m;
int a[N], b[N];

struct Dat {
	int x, y; LL d;
	Dat() {}
	Dat(int _x, int _y, LL _d) : x(_x), y(_y), d(_d) {}
	bool operator < (const Dat &t) const {
		return d > t.d;
	}
};
priority_queue<Dat> q;

struct Subway {
	vector<int> sites, we, ord;
	vector<LL> dis;
	vector<bool> was;
	int size() const {
		return (int)sites.size();
	}
	void prework() {
		int cnt;
		scanf("%d", &cnt);
		// sites, we
		sites.resize(cnt);
		we.resize(cnt - 1);
		for (int i = 0; i < cnt; ++i) {
			scanf("%d", &sites[i]);
			sites[i] -= 1;
			if (i < cnt - 1) {
				scanf("%d", &we[i]);
			}
		}
		// dis
		dis.resize(cnt);
		fill(dis.begin(), dis.end(), INFLL);
		// ord
		ord.resize(cnt);
		iota(ord.begin(), ord.end(), 0);
		sort(ord.begin(), ord.end(), [&](int x, int y) {
			return sites[x] < sites[y];
		});
		// was
		was.resize(cnt);
		fill(was.begin(), was.end(), false);
		
		/* for (int x : sites) {
			LOG("%d ", x);
		}
		LOG("\n"); */
	}
	int rk(int site) const {
		int l = 0, r = size(), md;
		while (l < r) {
			md = l + r >> 1;
			if (sites[ord[md]] >= site) {
				r = md;
			} else {
				l = md + 1;
			}
		}
		assert(sites[ord[r]] == site);
		return ord[r];
	}
	int operator[] (int k) const {
		assert(0 <= k && k < (int) sites.size());
		return sites[k];
	}
	bool chk(int site) const {
		return was[rk(site)];
	}
} subw[N];

vector<int> ordA[N];

struct Vec {
	int x; LL y;
	Vec() {}
	Vec(int _x, LL _y) : x(_x), y(_y) {}
	LL val(int k) const {
		return y + k * (LL)x;
	}
	LL operator * (const Vec &t) const {
		return x * t.y - y * t.x;
	}
	Vec operator - (const Vec &t) const {
		return (Vec){x - t.x, y - t.y};
	}
};

LL area(const Vec &a, const Vec &b, const Vec &c) {
	return (b - a) * (c - a);
}

void updSite(vector<Vec> &v, int x, LL y) {
	if (v.size() && y == v.back().y && x >= v.back().x) {
		return;
	}
	const Vec &t = Vec(x, y);
	while (v.size() > 1 && area(v[v.size() - 2], v.back(), t) >= 0) {
		v.pop_back();
	}
	v.eb(t);
}

vector<Vec> vs[N];
int p[N];

void getSubw(int i, int &k, LL &d) {
	vector<int> &t = ordA[i];
	while (t.size() && subw[t.back()].chk(i)) {
		t.pop_back();
	}
	if (t.empty()) {
		k = -1;
		d = -1ll;
		return;
	}
	const vector<Vec> &v = vs[i];
	assert((int)v.size() > 0);
	// LOG("?? %ld\n", v.size());
	k = t.back();
	int x = a[k];
	while (p[i] + 1 < (int)v.size() && v[p[i] + 1].val(x) <= v[p[i]].val(x)) {
		p[i] += 1;
	}
	d = v[p[i]].val(x);
}

LL dis[N];

void updQ(int x, int y, LL d) {
	// LOG("upd: %d, %d, %lld\n", x, y, d);
	if (subw[x].dis[y] <= d) {
		return;
	}
	subw[x].dis[y] = d;
	q.em(x, y, d);
	int site = subw[x][y];
	if (d < dis[site]) {
		dis[site] = d;
	}
}

void transi(int site, int k, LL d) {
	updSite(vs[site], b[k], d);
	LL nd;
	getSubw(site, k, nd);
	if (k == -1) {
		return;
	}
	if (nd < d) {
		LOG("??\n");
		while (true);
	}
	updQ(k, subw[k].rk(site), nd);
}

int main() {
	scanf("%d%d", &n, &m);
	for (int i = 0; i < m; ++i) {
		scanf("%d", a + i);
	}
	for (int i = 0; i < m; ++i) {
		scanf("%d", b + i);
	}
	memset(dis, 0x3f, n << 3);
	dis[0] = 0ll;
	for (int i = 0; i < m; ++i) {
		subw[i].prework();
		for (int j = 0; j < subw[i].size(); ++j) {
			int site = subw[i][j];
			// LOG("%d %d %lld\n", i, j, dis[site]);
			q.em(i, j, dis[site]);
			subw[i].dis[j] = dis[site];
			ordA[site].eb(i);
		}
	}
	for (int i = 0; i < n; ++i) {
		vector<int> &t = ordA[i];
		sort(t.begin(), t.end(), [&](int x, int y) {
			return a[x] > a[y];
		});
	}
	while (q.size()) {
		auto [x, y, d] = q.top();
		// LOG("O: %d %d %d %lld\n", x, y, subw[x][y], d);
		q.pop();
		if (d != subw[x].dis[y]) {
			continue;
		}
		subw[x].was[y] = true;
		int site = subw[x][y];
		transi(site, x, d);
		if (y + 1 < subw[x].size()) {
			updQ(x, y + 1, d + subw[x].we[y]);
		}
	}
	for (int x = 1; x < n; ++x) {
		printf("%lld ", dis[x]);
	}
	puts("");
	return 0;
}

詳細信息

Test #1:

score: 100
Accepted
time: 3ms
memory: 79544kb

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: 6ms
memory: 79592kb

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: 4ms
memory: 79584kb

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

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: 12ms
memory: 79652kb

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: 8ms
memory: 79588kb

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: 8ms
memory: 79680kb

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: 8ms
memory: 79740kb

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

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

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: 8ms
memory: 79980kb

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: 0
Accepted
time: 12ms
memory: 80160kb

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 90610242716 52312675258 77437996874 11273252242 56...

result:

ok 999 numbers

Test #13:

score: 0
Accepted
time: 11ms
memory: 77972kb

input:

1000 1328
942464 700134 838046 230830 933766 241402 754798 823043 908485 771434 356964 779662 242435 658845 57070 349037 920119 952268 194414 510421 654479 753093 51195 678925 521131 537897 685665 725809 233695 739566 778076 336559 62389 81629 777441 708621 65449 395413 249430 591777 980459 77062 91...

output:

234864701 70427560643 33979112868 42154802 71102236248 360025339 8808877949 77704918952 202854481721 482146430 362270842220 187668535546 142540492218 202398929923 87515104508 103824540069 292703838878 70226700124 112913296906 204185466003 294581984792 344742221973 131973239350 55299336706 2803617572...

result:

ok 999 numbers

Test #14:

score: 0
Accepted
time: 67ms
memory: 84520kb

input:

1000 7893
234290 650221 485034 842643 583731 316391 855877 823188 996737 358070 913797 57603 43458 220809 843466 16281 586350 16643 661960 482050 214036 744249 692933 179360 771862 316856 434846 586374 290472 17854 418050 919421 61269 515068 557493 392514 238650 237722 168143 347078 924169 447795 19...

output:

811896320 1293855635 3137682407 683460714 124384666 3296401445 1891230314 617384608 818485965 926302922 908780409 371762097 530183257 5228061326 2528845153 2848035487 6292785548 3903673375 4384276771 824141642 2803177585 1373654628 2979388693 3991276711 1077652949 1076377042 2477897384 1012232752 30...

result:

ok 999 numbers

Test #15:

score: -100
Wrong Answer
time: 54ms
memory: 84872kb

input:

10000 17223
411638 198168 78675 791920 399414 264260 756544 346010 72555 798265 399527 770715 218981 209633 792241 825286 312326 307287 803037 449058 805254 687533 938875 188202 566450 824807 986611 451083 581033 152703 385916 972649 621726 888799 212068 256602 249113 701737 251023 528041 668534 932...

output:

264478456 19629721444 58747142191 104890162435 81066903934 91271124384 22059849400 70219594888 158782955 67401328996 69908156642 88420661476 38894396830 71239910353 187511078 47005947919 48165339358 116258852571 27391548301 44644425059 32244633281 77343528772 110200074127 714011432 47544674155 42533...

result:

wrong answer 654th numbers differ - expected: '79608596576', found: '80463928989'