結果

問題 No.2301 Namorientation
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-11-08 00:59:01
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 850 ms / 3,000 ms
コード長 1,488 bytes
コンパイル時間 2,690 ms
コンパイル使用メモリ 220,216 KB
実行使用メモリ 63,704 KB
最終ジャッジ日時 2024-11-08 00:59:26
合計ジャッジ時間 23,266 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 3 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 3 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 3 ms
5,248 KB
testcase_12 AC 421 ms
25,600 KB
testcase_13 AC 399 ms
23,552 KB
testcase_14 AC 850 ms
40,576 KB
testcase_15 AC 476 ms
28,160 KB
testcase_16 AC 710 ms
35,328 KB
testcase_17 AC 460 ms
26,624 KB
testcase_18 AC 708 ms
35,968 KB
testcase_19 AC 337 ms
22,272 KB
testcase_20 AC 698 ms
35,712 KB
testcase_21 AC 501 ms
27,776 KB
testcase_22 AC 291 ms
63,704 KB
testcase_23 AC 287 ms
62,856 KB
testcase_24 AC 234 ms
53,148 KB
testcase_25 AC 206 ms
32,348 KB
testcase_26 AC 276 ms
41,232 KB
testcase_27 AC 834 ms
40,704 KB
testcase_28 AC 839 ms
40,576 KB
testcase_29 AC 802 ms
40,704 KB
testcase_30 AC 823 ms
40,832 KB
testcase_31 AC 825 ms
40,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

void fast_io() {
	ios_base::sync_with_stdio(false);
	cin.tie(nullptr);
}

int main() {
	fast_io();
	int n;
	cin >> n;
	map<pair<int, int>, int> idx;
	vector<vector<int>> g(n);
	for (int i = 0; i < n; i++) {
		int a, b;
		cin >> a >> b;
		a--, b--;
		idx[{a, b}] = i;
		idx[{b, a}] = i;
		g[a].push_back(b);
		g[b].push_back(a);
	}
	vector<int> loop;
	{
		vector<int> color(n, 0);
		vector<int> parent(n, -1);
		function<void(int, int)> dfs = [&](int v, int p) {
			color[v] = 1;
			for (int u : g[v]) {
				if (u == p) {
					continue;
				}
				if (color[u] == 0) {
					parent[u] = v;
					dfs(u, v);
				} else if (color[u] == 1) {
					int cur = v;
					while (cur != u) {
						loop.push_back(cur);
						cur = parent[cur];
					}
					loop.push_back(u);
				}
			}
			color[v] = 2;
		};
		dfs(0, -1);
	}
	vector<bool> vis(n), ans(n);
	deque<int> dq;
	int l = loop.size();
	for (int i = 0; i < l; i++) {
		dq.push_back(loop[i]);
		vis[loop[i]] = 1;
		int j = loop[i], k = loop[(i + 1) % l];
		if (j < k) {
			ans[idx[{j, k}]] = true;
		} else {
			ans[idx[{k, j}]] = false;
		}
	}
	while (!dq.empty()) {
		int v = dq.front();
		dq.pop_front();
		for (int u : g[v]) {
			if (!vis[u]) {
				vis[u] = 1;
				dq.push_back(u);
				if (v < u) {
					ans[idx[{v, u}]] = false;
				} else {
					ans[idx[{u, v}]] = true;
				}
			}
		}
	}
	for (int i = 0; i < n; i++) {
		if (ans[i]) {
			cout << "->\n";
		} else {
			cout << "<-\n";
		}
	}
}
0