QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#352757#7991. 最小环zzy0922AC ✓979ms272332kbC++142.5kb2024-03-13 16:30:262024-03-13 16:30:26

Judging History

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

  • [2024-03-13 16:30:26]
  • 评测
  • 测评结果:AC
  • 用时:979ms
  • 内存:272332kb
  • [2024-03-13 16:30:26]
  • 提交

answer

#include <bits/stdc++.h>

using i64 = long long;
constexpr int N = 600005;

int n, m, tot;
int u[N << 1], v[N << 1];
i64 w[N << 1];
bool del[N << 1];
std::unordered_set<int> eS[N]; 

inline void add_e(int uu, int vv, i64 ww) {
	++tot;
	u[tot] = uu;
	v[tot] = vv;
	w[tot] = ww;
	eS[uu].insert(tot);
	eS[vv].insert(tot);
}

std::vector<std::pair<int, i64> > g[N];
std::unordered_map<int, i64> dis[N];

std::unordered_set<int> vis;

inline void dij(int s) {
	dis[s][s] = 0;
	vis.clear();
	std::priority_queue <std::pair<i64, int>, std::vector<std::pair<i64, int> >, std::greater<std::pair<i64, int> > > pq;
	pq.emplace(0, s);
	while (!pq.empty()) {
		int u = pq.top().second;
		pq.pop();
		if (vis.count(u)) continue;
		vis.insert(u);
		for (const auto &[v, w] : g[u]) {
			if (!dis[s].count(v) || dis[s][v] > dis[s][u] + w) {
				dis[s][v] = dis[s][u] + w;
				pq.emplace(dis[s][v], v);
			}
		}
	}
}

i64 ans = 0x7fffffffffffffffll;

int main() {
	std::cin >> n >> m;
	for (int i = 1, u, v, w; i <= m; i++) {
		std::cin >> u >> v >> w;
		add_e(u, v, w);
		if (u == v) ans = std::min(ans, 1ll * w);
	}

	auto del_e = [&](int id) {
		eS[u[id]].erase(id);
		eS[v[id]].erase(id);
		del[id] = 1;
	};

	std::queue<int> q;
	auto chk = [&](int u) {
		if (!eS[u].empty() && eS[u].size() <= 2) q.push(u);
	};

	for (int i = 1; i <= n; i++) chk(i);

	while (!q.empty()) {
		int x = q.front();
		q.pop();
		if (eS[x].empty()) continue;
		if (eS[x].size() == 1) {
			int e = *eS[x].begin();
			del_e(e);
			chk(u[e]);
			chk(v[e]);
		}
		else {
			int e1 = *eS[x].begin(), e2 = *std::next(eS[x].begin()); 
			del_e(e1);
			del_e(e2);
			if (v[e2] == u[e1]) std::swap(e1, e2);
			if (v[e1] == u[e2]) {
				add_e(u[e1], v[e2], w[e1] + w[e2]);
				chk(u[e1]);
				chk(v[e2]);
				if (u[e1] == v[e2]) ans = std::min(ans, w[e1] + w[e2]);
			} else if (u[e1] == u[e2]){
				chk(v[e1]);
				chk(v[e2]);
			} else {
				chk(u[e1]);
				chk(u[e2]);
			}
		}
	}
	// if (n >= 20000) return 0;
	for (int i = 1; i <= tot; i++) 
		if (!del[i]) g[u[i]].emplace_back(v[i], w[i]);// std::cout << "ADD: " << u[i] << ' ' << v[i] << ' ' << w[i] << '\n';
	for (int i = 1; i <= n; i++) dij(i);
	for (int u = 1; u <= n; u++) 
		for (const auto &[v, w] : g[u]) {
			if (v != u && dis[v].count(u)) ans = std::min(ans, dis[v][u] + w);
			// std::cout << u << ' ' << v << ' ' << w << '\n';
		}
	std::cout << (ans == 0x7fffffffffffffffll ? -1 : ans) << '\n';
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 7ms
memory: 89444kb

input:

4 6
1 2 1
4 3 3
4 1 9
2 4 1
3 1 2
3 2 6

output:

7

result:

ok single line: '7'

Test #2:

score: 0
Accepted
time: 15ms
memory: 84804kb

input:

1 0

output:

-1

result:

ok single line: '-1'

Test #3:

score: 0
Accepted
time: 15ms
memory: 89376kb

input:

1 1
1 1 1

output:

1

result:

ok single line: '1'

Test #4:

score: 0
Accepted
time: 463ms
memory: 161400kb

input:

258420 258419
33061 33062 767169384
212916 212917 1741339
229881 229882 896760805
173467 173468 273055172
233189 233190 800433307
10157 10158 126766550
174605 174606 552176083
224030 224031 886617880
229102 229103 783848581
67588 67589 510826095
233648 233649 879695751
214453 214454 867104578
153140...

output:

-1

result:

ok single line: '-1'

Test #5:

score: 0
Accepted
time: 489ms
memory: 161508kb

input:

248016 248896
82688 82755 592665252
202847 203260 294408121
26821 28237 269132335
150967 152178 3125829
246069 247390 29492546
7470 7673 55843492
33975 35414 442802995
28451 28948 193736988
34484 34637 84441058
60168 60309 501991354
79579 79844 26854803
239672 239706 111702667
73548 73658 149840530
...

output:

98674714245

result:

ok single line: '98674714245'

Test #6:

score: 0
Accepted
time: 538ms
memory: 168024kb

input:

270530 271285
80489 81855 218173724
188930 190845 783975756
29830 30626 22189315
234320 234472 70840355
198096 198272 300313423
224194 226906 105128197
115010 115834 37228105
134788 135583 18647938
257292 257358 98569041
146988 147215 69398857
248752 250002 409565478
62128 63751 839744551
121918 122...

output:

133486910467

result:

ok single line: '133486910467'

Test #7:

score: 0
Accepted
time: 598ms
memory: 171816kb

input:

222087 223141
123107 123811 2984035
216346 217464 675263
139741 141286 892140
77973 78018 453931100
38603 39546 157182459
13105 14616 775862
97035 97704 379136464
86254 88311 84193802
83968 84398 246202498
152486 160164 65619516
73213 73517 1129576
15618 16541 498613468
192241 195576 889879
21363 21...

output:

47599478278

result:

ok single line: '47599478278'

Test #8:

score: 0
Accepted
time: 610ms
memory: 171804kb

input:

212718 214066
104602 105717 148385760
163427 165307 437059346
108663 111803 784753745
15490 15784 789609
77598 80118 53908869
97776 98040 78287597
26994 27717 989577
134781 134919 531908
22362 24185 185680
114422 114890 609661
192852 192861 155477
45695 45800 35773
150695 152662 511678590
101629 102...

output:

36329947627

result:

ok single line: '36329947627'

Test #9:

score: 0
Accepted
time: 469ms
memory: 160312kb

input:

166349 167207
127268 127447 264589535
87716 91194 596943
123233 126065 170996332
16886 20295 35862710
4657 7035 31814455
95412 96577 195164337
17282 19855 200600035
18848 20733 547079078
139859 141952 197062
124361 126887 37905401
30749 32439 248082130
115409 121655 13113841
85640 88061 989595
74722...

output:

30821798636

result:

ok single line: '30821798636'

Test #10:

score: 0
Accepted
time: 770ms
memory: 199284kb

input:

289406 290248
136815 139417 24401
82238 82679 391891
117261 117722 23784755
45898 47276 91613
19042 20538 139326255
90781 91014 33771
173238 174945 166532570
64778 65593 89778641
107363 112432 3864090
260499 261031 165160
167079 167190 807727902
15135 17610 819060894
46707 48909 252893
51782 55878 3...

output:

61125659219

result:

ok single line: '61125659219'

Test #11:

score: 0
Accepted
time: 493ms
memory: 161624kb

input:

246266 246265
67999 29611 208851615
22833 19844 11567655
78556 60887 111689338
95799 91984 129780604
41384 117633 410486433
7780 17854 417509938
16799 26207 657779642
94022 203027 902990247
41361 49284 914930989
188504 211149 506036119
55526 231127 316210314
179380 117042 590986492
198142 119962 623...

output:

-1

result:

ok single line: '-1'

Test #12:

score: 0
Accepted
time: 425ms
memory: 149912kb

input:

211768 213001
149297 26223 476199539
41008 36464 884082193
55217 33464 115782442
68840 35424 855362664
143738 85588 100080439
40110 28162 373005241
129902 66381 475925374
201288 125187 14707055
137096 124072 115900270
133421 107543 256018220
6224 2375 672655723
35440 9684 72896288
59199 35246 339260...

output:

-1

result:

ok single line: '-1'

Test #13:

score: 0
Accepted
time: 345ms
memory: 143268kb

input:

189247 189247
40564 40565 126861810
103097 103098 125735427
23599 23600 699624689
118819 118820 988946397
165617 165618 98692171
77479 77480 379839193
110553 110554 938974540
115537 115538 214424513
142294 142295 245482087
72445 72446 983499445
130871 130872 557270990
91433 91434 224165097
78267 782...

output:

89784394212359

result:

ok single line: '89784394212359'

Test #14:

score: 0
Accepted
time: 503ms
memory: 165744kb

input:

260655 260655
21607 6885 878779927
39652 259514 670669357
9951 27823 587572053
42838 39782 144417668
72417 6356 619184403
185975 89666 645647130
76384 54129 395523971
61846 16086 124527845
9133 38689 207646370
147822 200308 566313558
38830 122385 93281252
7617 13394 325882927
199865 204258 378663267...

output:

458074331261

result:

ok single line: '458074331261'

Test #15:

score: 0
Accepted
time: 416ms
memory: 150764kb

input:

219732 219732
103472 140334 380068165
73933 162518 926018493
47678 47679 878421674
25405 25406 841514595
117852 171915 471111497
90799 63291 746636238
147551 54378 180584784
175618 216790 940522032
28024 28025 357423428
121290 72993 911767018
103269 144817 625471074
139641 150831 542699252
117562 66...

output:

24288743988756

result:

ok single line: '24288743988756'

Test #16:

score: 0
Accepted
time: 334ms
memory: 150020kb

input:

215086 215086
116576 116577 286771136
152525 152526 166264772
65067 65066 570398365
43139 43138 503552627
7182 7181 134876306
101929 101928 523800520
155406 155407 685194522
53401 53400 433386119
126226 126227 494524327
91449 91448 790089379
174539 189885 758546774
106776 106777 215494756
103032 103...

output:

-1

result:

ok single line: '-1'

Test #17:

score: 0
Accepted
time: 979ms
memory: 272332kb

input:

300000 301500
29189 30997 927578079
260545 260669 492392474
213735 226063 455930491
11586 20995 255773088
18461 27079 845799243
64966 67483 49185881
176419 180909 56922852
159940 160137 469740653
248115 251495 835368096
101352 103380 518722935
80650 86065 250840499
70757 76241 374593963
205938 22863...

output:

43941542770116

result:

ok single line: '43941542770116'

Test #18:

score: 0
Accepted
time: 346ms
memory: 147360kb

input:

191944 192760
1 1459 46894095
161913 162176 60297968
188684 189606 493906604
115668 116953 16132875
178539 178550 191199785
110089 111482 400171054
47522 47552 13721714
51832 52187 65768106
157987 158725 153066538
136656 137155 141796503
122387 123388 546674692
146085 146725 950321060
16363 19998 10...

output:

89279240522

result:

ok single line: '89279240522'