QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#446668#4809. Maximum RangeIBoryWA 71ms40112kbC++203.4kb2024-06-17 14:54:342024-06-17 14:54:34

Judging History

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

  • [2024-06-17 14:54:34]
  • 评测
  • 测评结果:WA
  • 用时:71ms
  • 内存:40112kb
  • [2024-06-17 14:54:34]
  • 提交

answer

#include <bits/stdc++.h>
#define pii pair<int, int>
using namespace std;

const int MAX = 100007;
vector<pii> G[MAX], BCC[MAX];
int V[MAX], E[MAX], B[MAX], pv[MAX], ok[MAX], dn, bn;
set<pii> no;
vector<int> S;
pii P[MAX];

int DFS(int cur, int prev) {
	int ret = V[cur] = ++dn;
	for (auto [next, en] : G[cur]) {
		if (next == prev) continue;
		if (V[cur] > V[next]) S.push_back(en);
		if (V[next]) {
			ret = min(ret, V[next]);
			continue;
		}

		int t = DFS(next, cur);
		ret = min(ret, t);
		if (t < V[cur]) continue;

		bn++;
		do {
			int e = S.back(); S.pop_back();
			B[e] = bn;
			BCC[bn].emplace_back(E[e], e);
		} while (BCC[bn].back().second != en);
		sort(BCC[bn].begin(), BCC[bn].end());
	}
	return ret;
}

const int MAX_N = 222222;
const int MAX_E = 666666;

struct Dinic {
	vector<pii> G[MAX_N];
	int lim[MAX_E], use[MAX_E], en = 4;
	int lv[MAX_N], idx[MAX_N], src, snk;
	set<int> in;

	void AddEdge(int a, int b, int c) {
		G[a].emplace_back(b, en);
		G[b].emplace_back(a, en ^ 1);
		lim[en] = c;
		en += 2;
	}

	bool BFS() {
		memset(lv, -1, sizeof(lv));
		queue<int> Q;
		Q.push(src);
		lv[src] = 0;
		while (!Q.empty()) {
			int cur = Q.front(); Q.pop();
			for (auto [next, en] : G[cur]) {
				if (lv[next] != -1 || lim[en] == use[en]) continue;
				lv[next] = lv[cur] + 1;
				Q.push(next);
			}
		}
		return lv[snk] != -1;
	}

	int DFS(int cur, int res = 1e9) {
		if (cur == snk) return res;
		for (int& i = idx[cur]; i < G[cur].size(); ++i) {
			auto& [next, en] = G[cur][i];
			if (lv[cur] + 1 != lv[next] || lim[en] == use[en]) continue;
			int f = DFS(next, min(res, lim[en] - use[en]));
			if (f) {
				if (in.count(en ^ 1)) in.erase(en ^ 1);
				in.insert(en);
				use[en] += f;
				use[en ^ 1] -= f;
				return f;
			}
		}
		return 0;
	}

	int Flow(int S, int E) {
		src = S, snk = E;
		int ret = 0;
		while (BFS() && ret < 2) {
			memset(idx, 0, sizeof(idx));
			int t = 0;
			while (t = DFS(src)) ret += t;
		}
		return ret;
	}
} F;

vector<int> ans;
void DFS2(int cur, int prev) {
	for (auto [next, en] : G[cur]) {
		if (!ok[en] || next == prev || next == ans[0]) continue;
		ok[en] = 0;
		ans.push_back(next);
		DFS2(next, cur);
	}
}

int main() {
	ios::sync_with_stdio(0); cin.tie(0);
	int N, M;
	cin >> N >> M;
	for (int i = 1; i <= M; ++i) {
		int a, b;
		cin >> a >> b >> E[i];
		G[a].emplace_back(b, i);
		G[b].emplace_back(a, i);
		P[i] = {a, b};
	}

	for (int i = 1; i <= N; ++i) if (!V[i]) DFS(i, i);

	int go = -1, id = 0;
	for (int i = 1; i <= bn; ++i) {
		if (BCC[i].size() == 1) continue;
		int n = BCC[i].back().first - BCC[i][0].first;
		if (go < n) {
			go = n;
			id = i;
		}
	}

	auto [a, b] = P[BCC[id][0].second];
	auto [c, d] = P[BCC[id].back().second];
	ok[BCC[id][0].second] = ok[BCC[id].back().second] = 1;

	int src = 2 * N + 1, snk = 2 * N + 2;
	for (int i = 1; i <= M; ++i) {
		auto [u, v] = P[i];
		F.AddEdge(N + u, v, B[i] == id);
		F.AddEdge(N + v, u, B[i] == id);
	}
	for (int i = 1; i <= N; ++i) F.AddEdge(i, N + i, 1);
	F.AddEdge(src, a, 1); F.AddEdge(src, b, 1);
	F.AddEdge(N + c, snk, 1); F.AddEdge(N + d, snk, 1);
	F.Flow(src, snk);

	for (int n : F.in) {
		int e = n / 4;
		if (e <= M && n % 2 == 0) ok[e] = 1;
	}

	ans.push_back(a);
	DFS2(a, a);
	ans.pop_back();

	cout << go << '\n';
	cout << ans.size() << '\n';
	for (int n : ans) cout << n << ' ';
	return 0;
}

詳細信息

Test #1:

score: 100
Accepted
time: 0ms
memory: 13680kb

input:

5 7
1 2 1
1 3 -2
2 3 1
3 4 3
4 5 1
1 5 -1
2 5 2

output:

5
4
1 3 4 5 

result:

ok ok

Test #2:

score: 0
Accepted
time: 54ms
memory: 37960kb

input:

99997 100000
12238 99016 352755196
99016 25485 -412473602
25485 2440 991507552
2440 31171 -181894654
36970 2440 -800167579
2440 41865 -148191946
96629 31171 847888506
36970 95740 395546542
27992 2440 647886610
99016 29557 369124914
80795 27992 -673871966
36970 3509 573208857
57672 29557 874406776
41...

output:

1959330954
37
95092 31171 2440 25485 99016 29557 57672 69259 68883 44442 4697 96048 94991 86274 74677 92617 86665 76022 72089 22074 96230 87712 51491 72825 3463 84407 67966 89628 84997 54073 68523 30288 88289 37694 96778 46301 34883 

result:

ok ok

Test #3:

score: 0
Accepted
time: 53ms
memory: 38088kb

input:

99997 100000
41884 21178 -431811360
41884 42699 -450057006
36523 21178 582079730
21178 96679 615552614
63637 21178 498974417
96679 5108 235820276
75058 41884 220112636
35148 42699 589595309
36523 18002 -637739861
65854 5108 -312755792
45137 41884 -511118771
5108 31311 554050951
25335 35148 -28341059...

output:

1968439328
40
70298 33264 26071 90144 25926 52252 51434 69337 7577 5108 50088 6204 28694 41126 87303 83047 26981 54901 59612 14678 35287 78274 18331 89860 71024 99686 98098 23692 87673 42699 41884 45137 85192 38202 83711 83919 55330 71151 98733 99716 

result:

ok ok

Test #4:

score: 0
Accepted
time: 58ms
memory: 38156kb

input:

99984 99999
33974 29867 335681778
33974 87468 348956829
83048 87468 320849805
29867 69456 -424530698
72457 69456 -950650074
53838 83048 755969166
85914 69456 569454441
51728 87468 -202158773
15970 29867 -865071002
15970 94894 697607001
94894 74694 616318126
33974 11496 -89287579
53838 34365 -6577379...

output:

1985932414
36
11395 92249 27866 23026 83298 1652 76013 29864 53838 83048 87468 51728 75902 5449 70238 97838 83656 91542 28078 78849 80694 50114 35807 13570 79841 32897 75496 85914 55808 57640 58540 79605 55857 61993 46598 303 

result:

ok ok

Test #5:

score: 0
Accepted
time: 71ms
memory: 40112kb

input:

99988 99992
8584 11873 -811540160
68064 11873 -930246087
11873 60056 916668870
68064 82193 -859062523
60056 75072 790866030
27767 75072 357619485
75072 78221 411650300
39636 82193 264106928
6675 60056 933851261
71747 78221 -508471038
11873 92771 -665232168
34402 27767 -906494982
11873 42714 63734230...

output:

1932268861
30
75593 93559 21107 26922 8975 89787 23798 83283 2518 50628 88236 5185 29873 3186 91957 75072 60056 6675 28745 99809 8778 38274 64174 34179 75176 25891 62720 16385 20678 83884 

result:

ok ok

Test #6:

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

input:

99996 99996
58191 98120 261718607
91298 98120 471683748
58191 68921 217652908
67441 91298 -731916804
78177 68921 810185021
98120 54747 -35446486
78177 2822 -409569426
91298 68058 -897038977
68921 39067 892161204
30165 78177 379543758
32418 98120 -139944101
11281 68921 422411872
37751 32418 331606200...

output:

1752928792
25
16812 67249 25934 42296 85525 18913 29915 78216 34081 11281 68921 58191 48440 3783 3308 58464 1917 30739 77560 4369 46983 74019 64478 81854 65221 

result:

ok ok

Test #7:

score: -100
Wrong Answer
time: 60ms
memory: 39840kb

input:

99996 100000
39127 4358 657531703
4358 66528 484843263
47215 4358 -856669390
47215 26179 -147254695
24822 39127 -635228854
81984 26179 600617794
24822 60559 327733708
39127 23879 286268283
95563 81984 -766366787
96587 24822 723252700
23879 13711 -303309809
60559 38379 992907085
60559 6012 -15086498
...

output:

1892735800
19
42006 67183 31390 97465 24485 4358 39127 23879 13711 16150 60168 12024 27325 73608 58919 19383 92093 74141 3750 

result:

wrong answer Participant range less than jury