結果

問題 No.2301 Namorientation
ユーザー shobonvipshobonvip
提出日時 2023-05-12 21:55:21
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 488 ms / 3,000 ms
コード長 1,841 bytes
コンパイル時間 4,641 ms
コンパイル使用メモリ 267,948 KB
実行使用メモリ 21,260 KB
最終ジャッジ日時 2024-05-06 11:45:14
合計ジャッジ時間 18,442 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 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 1 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 266 ms
13,184 KB
testcase_13 AC 225 ms
12,416 KB
testcase_14 AC 438 ms
19,840 KB
testcase_15 AC 277 ms
14,336 KB
testcase_16 AC 376 ms
17,664 KB
testcase_17 AC 289 ms
13,568 KB
testcase_18 AC 378 ms
17,792 KB
testcase_19 AC 221 ms
11,776 KB
testcase_20 AC 358 ms
17,792 KB
testcase_21 AC 261 ms
14,208 KB
testcase_22 AC 375 ms
19,344 KB
testcase_23 AC 365 ms
19,228 KB
testcase_24 AC 312 ms
16,680 KB
testcase_25 AC 267 ms
17,476 KB
testcase_26 AC 376 ms
21,260 KB
testcase_27 AC 422 ms
19,840 KB
testcase_28 AC 479 ms
20,096 KB
testcase_29 AC 436 ms
19,968 KB
testcase_30 AC 488 ms
19,840 KB
testcase_31 AC 434 ms
19,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

typedef modint998244353 mint;
typedef long long ll;

int main(){
	int n; cin >> n;
	vector<vector<pair<int,int>>> ikeru;
	ikeru.resize(n);
	vector<int> deg(n);
	vector<int> x(n), y(n);
	for (int i=0; i<n; i++){
		int a, b;
		cin >> a >> b;
		a--; b--;
		deg[a]++;
		deg[b]++;
		x[i] = a;
		y[i] = b;
		ikeru[a].push_back(pair(b,i));
		ikeru[b].push_back(pair(a,i));
	}
	vector<int> mada;
	vector<bool> isnamori(n, true);
	vector<int> comefrom(n,-1);
	vector<int> kousha(n,-1);
	for (int i=0; i<n; i++){
		if (deg[i] == 1){
			mada.push_back(i);
		}
	}
	while (!mada.empty()){
		int i = mada.back();
		mada.pop_back();
		isnamori[i] = false;
		for (auto [j,c]: ikeru[i]){
			deg[j]--;
			if (deg[j] == 1){
				mada.push_back(j);
			}else if (deg[j] <= 0){
				kousha[c] = i;
			}
		}
	}

	vector<bool> tansaku(n);
	for (int i=0; i<n; i++){
		if (!isnamori[i]){
			tansaku[i] = true;
		}
	}

	for (int i=0; i<n; i++){
		if (isnamori[i]){
			mada.push_back(i);
			break;
		}
	}

	vector<int> arr;
	while(!mada.empty()){
		int i = mada.back();
		mada.pop_back();
		if (tansaku[i]) continue;
		arr.push_back(i);
		tansaku[i] = true;
		for (auto [j,c]: ikeru[i]){
			if (!tansaku[j]){
				mada.push_back(j);
			}
		}
	}

	int m = arr.size();
	arr.push_back(arr[0]);
	
	for (int i=0; i<m; i++){
		comefrom[arr[i+1]] = arr[i];
	}

	for (int i=0; i<n; i++){
		if (isnamori[x[i]] && isnamori[y[i]]){
			if (comefrom[y[i]] == x[i]){
				cout << "->" << endl;
			}else{
				cout << "<-" << endl;
			}
		}else if (isnamori[x[i]] && !isnamori[y[i]]){
			cout << "<-" << endl;
		}else if (!isnamori[x[i]] && isnamori[y[i]]){
			cout << "->" << endl;
		}else{
			if (kousha[i] == y[i]){
				cout << "->" << endl;
			}else{
				cout << "<-" << endl;
			}
		}
	}

}
0