結果

問題 No.2301 Namorientation
ユーザー kwm_tkwm_t
提出日時 2023-05-12 23:16:39
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 305 ms / 3,000 ms
コード長 1,993 bytes
コンパイル時間 6,159 ms
コンパイル使用メモリ 266,024 KB
実行使用メモリ 36,112 KB
最終ジャッジ日時 2023-08-19 06:09:06
合計ジャッジ時間 19,410 ms
ジャッジサーバーID
(参考情報)
judge10 / judge9
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 1 ms
4,380 KB
testcase_05 AC 2 ms
4,380 KB
testcase_06 AC 1 ms
4,384 KB
testcase_07 AC 2 ms
4,384 KB
testcase_08 AC 1 ms
4,384 KB
testcase_09 AC 1 ms
4,384 KB
testcase_10 AC 1 ms
4,380 KB
testcase_11 AC 2 ms
4,384 KB
testcase_12 AC 164 ms
22,928 KB
testcase_13 AC 144 ms
21,040 KB
testcase_14 AC 299 ms
36,016 KB
testcase_15 AC 184 ms
24,912 KB
testcase_16 AC 245 ms
31,316 KB
testcase_17 AC 166 ms
23,588 KB
testcase_18 AC 245 ms
31,732 KB
testcase_19 AC 128 ms
19,980 KB
testcase_20 AC 249 ms
31,488 KB
testcase_21 AC 177 ms
24,692 KB
testcase_22 AC 112 ms
35,260 KB
testcase_23 AC 110 ms
34,636 KB
testcase_24 AC 92 ms
29,400 KB
testcase_25 AC 82 ms
27,868 KB
testcase_26 AC 104 ms
34,376 KB
testcase_27 AC 297 ms
36,076 KB
testcase_28 AC 299 ms
36,112 KB
testcase_29 AC 295 ms
36,084 KB
testcase_30 AC 301 ms
35,980 KB
testcase_31 AC 305 ms
35,884 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