結果

問題 No.1023 Cyclic Tour
ユーザー square1001square1001
提出日時 2020-04-10 21:57:58
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 271 ms / 2,000 ms
コード長 1,327 bytes
コンパイル時間 881 ms
コンパイル使用メモリ 75,300 KB
実行使用メモリ 22,948 KB
最終ジャッジ日時 2024-09-15 20:19:00
合計ジャッジ時間 13,352 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
8,092 KB
testcase_01 AC 5 ms
8,008 KB
testcase_02 AC 5 ms
8,004 KB
testcase_03 AC 4 ms
8,064 KB
testcase_04 AC 153 ms
16,484 KB
testcase_05 AC 152 ms
16,616 KB
testcase_06 AC 191 ms
18,120 KB
testcase_07 AC 170 ms
17,420 KB
testcase_08 AC 135 ms
15,028 KB
testcase_09 AC 129 ms
14,856 KB
testcase_10 AC 120 ms
14,748 KB
testcase_11 AC 130 ms
15,180 KB
testcase_12 AC 119 ms
14,612 KB
testcase_13 AC 112 ms
14,204 KB
testcase_14 AC 115 ms
14,224 KB
testcase_15 AC 118 ms
14,440 KB
testcase_16 AC 238 ms
17,728 KB
testcase_17 AC 242 ms
17,856 KB
testcase_18 AC 243 ms
17,848 KB
testcase_19 AC 226 ms
17,528 KB
testcase_20 AC 259 ms
17,504 KB
testcase_21 AC 260 ms
17,664 KB
testcase_22 AC 246 ms
17,112 KB
testcase_23 AC 251 ms
17,208 KB
testcase_24 AC 239 ms
17,080 KB
testcase_25 AC 259 ms
17,424 KB
testcase_26 AC 261 ms
18,048 KB
testcase_27 AC 244 ms
17,816 KB
testcase_28 AC 237 ms
16,740 KB
testcase_29 AC 230 ms
16,352 KB
testcase_30 AC 246 ms
17,008 KB
testcase_31 AC 235 ms
17,488 KB
testcase_32 AC 240 ms
19,140 KB
testcase_33 AC 256 ms
18,196 KB
testcase_34 AC 244 ms
16,720 KB
testcase_35 AC 268 ms
17,452 KB
testcase_36 AC 264 ms
17,252 KB
testcase_37 AC 245 ms
18,640 KB
testcase_38 AC 227 ms
16,980 KB
testcase_39 AC 239 ms
16,832 KB
testcase_40 AC 252 ms
16,916 KB
testcase_41 AC 253 ms
16,816 KB
testcase_42 AC 271 ms
17,684 KB
testcase_43 AC 217 ms
16,268 KB
testcase_44 AC 158 ms
16,468 KB
testcase_45 AC 131 ms
22,948 KB
testcase_46 AC 133 ms
22,560 KB
testcase_47 AC 152 ms
22,564 KB
testcase_48 AC 221 ms
18,268 KB
testcase_49 AC 223 ms
18,260 KB
testcase_50 AC 234 ms
18,284 KB
testcase_51 AC 218 ms
18,184 KB
testcase_52 AC 224 ms
18,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <vector>
#include <iostream>
using namespace std;
int V, E; vector<int> G[100009], rG[100009], vs; bool used[100009]; int cmp[100009];
void add_edge(int from, int to) {
	G[from].push_back(to);
	rG[to].push_back(from);
}
void dfs(int v) {
	used[v] = true;
	for (int i = 0; i < G[v].size(); i++) {
		if (!used[G[v][i]]) dfs(G[v][i]);
	}
	vs.push_back(v);
}
void rdfs(int v, int k) {
	used[v] = true;
	cmp[v] = k;
	for (int i = 0; i < rG[v].size(); i++) {
		if (!used[rG[v][i]]) rdfs(rG[v][i], k);
	}
}
int scc() {
	fill(used, used + V, false);
	vs.clear();
	for (int v = 0; v < V; v++) {
		if (!used[v]) dfs(v);
	}
	fill(used, used + V, false);
	int k = 0;
	for (int i = vs.size() - 1; i >= 0; i--) {
		if (!used[vs[i]]) rdfs(vs[i], k++);
	}
	return k;
}
int main() {
	cin >> V >> E;
	vector<pair<int, int> > edges;
	for (int i = 0; i < E; ++i) {
		int a, b, c;
		cin >> a >> b >> c; --a, --b;
		add_edge(a, b);
		if (c == 1) add_edge(b, a);
		edges.push_back(make_pair(a, b));
	}
	int z = scc();
	vector<int> d(z), c(z);
	for (int i = 0; i < V; ++i) {
		++c[cmp[i]];
	}
	for (pair<int, int> e : edges) {
		if (cmp[e.first] == cmp[e.second]) {
			++d[cmp[e.first]];
		}
	}
	bool ok = false;
	for (int i = 0; i < z; ++i) {
		if (d[i] >= c[i] && c[i] >= 2) ok = true;
	}
	cout << (ok ? "Yes" : "No") << endl;
	return 0;
}
0