結果

問題 No.2914 正閉路検出
ユーザー Carpenters-CatCarpenters-Cat
提出日時 2024-10-04 23:35:04
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,906 bytes
コンパイル時間 2,238 ms
コンパイル使用メモリ 214,796 KB
実行使用メモリ 16,540 KB
最終ジャッジ日時 2024-10-04 23:35:20
合計ジャッジ時間 11,950 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
9,804 KB
testcase_01 AC 5 ms
9,684 KB
testcase_02 AC 5 ms
11,016 KB
testcase_03 AC 3 ms
9,676 KB
testcase_04 AC 4 ms
10,060 KB
testcase_05 AC 4 ms
9,676 KB
testcase_06 AC 4 ms
9,420 KB
testcase_07 AC 4 ms
9,932 KB
testcase_08 AC 4 ms
10,340 KB
testcase_09 AC 4 ms
9,936 KB
testcase_10 AC 4 ms
10,192 KB
testcase_11 AC 4 ms
10,432 KB
testcase_12 AC 5 ms
9,936 KB
testcase_13 AC 4 ms
9,552 KB
testcase_14 AC 5 ms
10,320 KB
testcase_15 AC 4 ms
11,084 KB
testcase_16 AC 5 ms
9,548 KB
testcase_17 AC 3 ms
9,936 KB
testcase_18 AC 4 ms
9,808 KB
testcase_19 AC 24 ms
10,964 KB
testcase_20 AC 50 ms
13,628 KB
testcase_21 AC 16 ms
11,280 KB
testcase_22 AC 60 ms
13,700 KB
testcase_23 AC 49 ms
13,632 KB
testcase_24 AC 79 ms
14,120 KB
testcase_25 AC 8 ms
9,804 KB
testcase_26 AC 13 ms
10,572 KB
testcase_27 AC 78 ms
14,668 KB
testcase_28 AC 90 ms
16,320 KB
testcase_29 AC 107 ms
16,076 KB
testcase_30 AC 18 ms
11,504 KB
testcase_31 AC 72 ms
15,204 KB
testcase_32 AC 90 ms
16,540 KB
testcase_33 AC 16 ms
10,832 KB
testcase_34 AC 117 ms
16,080 KB
testcase_35 AC 117 ms
16,080 KB
testcase_36 AC 112 ms
15,952 KB
testcase_37 AC 105 ms
16,432 KB
testcase_38 AC 110 ms
15,184 KB
testcase_39 TLE -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main () {
	int N, M;
	cin >> N >> M;
	using ll = long long;
	using T = tuple<int, int, ll>;
	std::vector<T> gr[200020];
	int E[200020];
	for (int i = 1; i <= M; i ++) {
		int u, v;
		ll w;
		cin >> u >> v >> w;
		gr[u].emplace_back(v, i, w);
		gr[v].emplace_back(u, i, -w);
		E[i] = u ^ v;
	}
	ll D[200020];
	int pre [200020];
	fill(D, D + (N + 1), 0);
	fill(pre, pre + (N + 1), 0);
	for (int i = 1; i <= N; i ++) {
		if (pre[i]) continue;
		pre[i] = -1;
		queue<int>que;
		que.push(i);
		int beg = -1;
		int pr2 = -1;
		ll d2 = -1;
		while (!que.empty()) {
			int u = que.front();
			que.pop();
			for (auto& [v, p, d] : gr[u]) {
			    // cout << v << " " << i << " " << d << endl;
				if (!pre[v]) {
					pre[v] = p;
					D[v] = D[u] + d;
					que.push(v);
				} else if (D[v] != D[u] + d) {
					beg = v;
					pr2 = p;
					d2 = D[u] + d;
					break;
				}
			}
			if (beg != -1) break;
		}
		if (0) {
		    for (int j = 1; j <= N; j ++) {
			cout << D[j] << " ";
		    }
		    cout << endl;
		}
		if (beg != -1) {
			ll d1 = D[beg];
			vector<int> a1, a2;
			int fl = beg;
			while (fl != i) {
				a1.push_back(pre[fl]);
				fl = fl ^ E[pre[fl]];
			}
			a2.push_back(pr2);
			fl = beg ^ E[pr2];
			while (fl != i) {
				a2.push_back(pre[fl]);
				fl = fl ^ E[pre[fl]];
			}
			if (d1 > d2) {
				swap(a1, a2);
			}
			reverse(a2.begin(), a2.end());
			for (auto& a : a2) {
				a1.push_back(a);
			}
			bool ex[200020];
			a2.clear();
			for (auto& a : a1) {
			    // cout << a<< " ";
				if (ex[a]) {
					while (ex[a]) {
						ex[a2.back()] = false;
						a2.pop_back();
					}
				} else {
					ex[a] = true;
					a2.push_back(a);
				}
			}
			cout << a2.size() << endl;
			cout << beg << endl;
			for (int i = 0; i < a2.size(); i ++) {
				cout << a2[i] << (i + 1 < a2.size() ? " " : "");
			}
			cout << endl;
			return 0;
		}
	}
	puts("-1");
}
0