結果

問題 No.2301 Namorientation
ユーザー kwm_tkwm_t
提出日時 2023-05-12 23:16:39
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 274 ms / 3,000 ms
コード長 1,993 bytes
コンパイル時間 4,389 ms
コンパイル使用メモリ 268,624 KB
実行使用メモリ 36,352 KB
最終ジャッジ日時 2024-05-06 13:17:26
合計ジャッジ時間 15,163 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 123 ms
23,040 KB
testcase_13 AC 108 ms
21,120 KB
testcase_14 AC 261 ms
36,224 KB
testcase_15 AC 159 ms
25,088 KB
testcase_16 AC 212 ms
31,488 KB
testcase_17 AC 146 ms
23,808 KB
testcase_18 AC 213 ms
32,000 KB
testcase_19 AC 112 ms
20,096 KB
testcase_20 AC 225 ms
31,616 KB
testcase_21 AC 143 ms
24,832 KB
testcase_22 AC 110 ms
35,328 KB
testcase_23 AC 103 ms
34,816 KB
testcase_24 AC 84 ms
29,440 KB
testcase_25 AC 80 ms
27,060 KB
testcase_26 AC 97 ms
34,200 KB
testcase_27 AC 257 ms
36,224 KB
testcase_28 AC 259 ms
36,224 KB
testcase_29 AC 274 ms
36,352 KB
testcase_30 AC 266 ms
36,096 KB
testcase_31 AC 270 ms
36,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
//using mint = modint1000000007;
//const int mod = 1000000007;
//using mint = modint998244353;
//const int mod = 998244353;
//const int INF = 1e9;
//const long long LINF = 1e18;
#define rep(i, n) for (int i = 0; i < (n); ++i)
#define rep2(i,l,r)for(int i=(l);i<(r);++i)
#define rrep(i, n) for (int i = (n-1); i >= 0; --i)
#define rrep2(i,l,r)for(int i=(r-1);i>=(l);--i)
#define all(x) (x).begin(),(x).end()
#define allR(x) (x).rbegin(),(x).rend()
#define endl "\n"
#define P pair<int,int>
template<typename A, typename B> inline bool chmax(A & a, const B & b) { if (a < b) { a = b; return true; } return false; }
template<typename A, typename B> inline bool chmin(A & a, const B & b) { if (a > b) { a = b; return true; } return false; }
int main() {
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int n; cin >> n;
	vector<vector<vector<int>>>to(n);
	vector<int>cnt(n);
	rep(i, n) {
		int u, v; cin >> u >> v;
		u--, v--;
		to[u].push_back({ v,i,1 });
		to[v].push_back({ u,i,-1 });
		cnt[u]++;
		cnt[v]++;
	}
	vector<int>ans(n, 0);
	queue<int>que;
	vector<int>par(n, -1);
	rep(i, n) {
		if (1 == cnt[i]) {
			que.push(i);
			cnt[i]--;
		}
	}
	while (!que.empty()) {
		int now = que.front();
		que.pop();
		for (auto ed : to[now]) {
			if (0 == cnt[ed[0]])continue;
			cnt[ed[0]]--;
			par[now] = ed[0];
			ans[ed[1]] = ed[2];
			if (1 == cnt[ed[0]]) {
				que.push(ed[0]);
				cnt[ed[0]] = 0;
			}
		}
	}
	rep(i, n) {
		if (-1 != par[i])continue;
		int now = i;
		vector<int>tmp;
		while (true) {
			bool flg = false;
			for (auto ed : to[now]) {
				if (i == ed[0])tmp = ed;
				if (-1 != par[ed[0]])continue;
				par[now] = ed[0];
				ans[ed[1]] = ed[2];
				now = ed[0];
				flg = true;
				break;
			}
			if (!flg) break;
		}
		ans[tmp[1]] = tmp[2];
		par[now] = i;
		break;
	}
	rep(i, n) {
		if (1 == ans[i])cout << "->" << endl;
		else if (-1 == ans[i])cout << "<-" << endl;
	}
	return 0;
}
0