結果
問題 | No.1023 Cyclic Tour |
ユーザー | jupiro |
提出日時 | 2020-04-24 19:14:03 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 142 ms / 2,000 ms |
コード長 | 3,757 bytes |
コンパイル時間 | 1,662 ms |
コンパイル使用メモリ | 129,808 KB |
実行使用メモリ | 30,328 KB |
最終ジャッジ日時 | 2024-10-15 02:05:57 |
合計ジャッジ時間 | 8,211 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 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 | 29 ms
5,888 KB |
testcase_05 | AC | 29 ms
5,760 KB |
testcase_06 | AC | 30 ms
5,888 KB |
testcase_07 | AC | 29 ms
5,888 KB |
testcase_08 | AC | 37 ms
7,892 KB |
testcase_09 | AC | 76 ms
19,444 KB |
testcase_10 | AC | 77 ms
19,736 KB |
testcase_11 | AC | 84 ms
20,616 KB |
testcase_12 | AC | 93 ms
22,984 KB |
testcase_13 | AC | 89 ms
21,800 KB |
testcase_14 | AC | 87 ms
21,632 KB |
testcase_15 | AC | 89 ms
22,184 KB |
testcase_16 | AC | 142 ms
23,924 KB |
testcase_17 | AC | 142 ms
23,936 KB |
testcase_18 | AC | 140 ms
22,280 KB |
testcase_19 | AC | 140 ms
22,292 KB |
testcase_20 | AC | 68 ms
16,772 KB |
testcase_21 | AC | 69 ms
16,992 KB |
testcase_22 | AC | 100 ms
19,140 KB |
testcase_23 | AC | 106 ms
19,620 KB |
testcase_24 | AC | 131 ms
23,676 KB |
testcase_25 | AC | 69 ms
16,800 KB |
testcase_26 | AC | 68 ms
16,736 KB |
testcase_27 | AC | 65 ms
15,992 KB |
testcase_28 | AC | 130 ms
22,800 KB |
testcase_29 | AC | 142 ms
23,948 KB |
testcase_30 | AC | 127 ms
22,904 KB |
testcase_31 | AC | 117 ms
21,492 KB |
testcase_32 | AC | 126 ms
22,448 KB |
testcase_33 | AC | 129 ms
22,392 KB |
testcase_34 | AC | 24 ms
6,396 KB |
testcase_35 | AC | 49 ms
7,092 KB |
testcase_36 | AC | 84 ms
17,568 KB |
testcase_37 | AC | 108 ms
20,892 KB |
testcase_38 | AC | 133 ms
22,820 KB |
testcase_39 | AC | 108 ms
19,952 KB |
testcase_40 | AC | 118 ms
20,476 KB |
testcase_41 | AC | 109 ms
20,340 KB |
testcase_42 | AC | 57 ms
7,080 KB |
testcase_43 | AC | 64 ms
8,424 KB |
testcase_44 | AC | 38 ms
14,000 KB |
testcase_45 | AC | 130 ms
30,328 KB |
testcase_46 | AC | 122 ms
25,340 KB |
testcase_47 | AC | 37 ms
14,300 KB |
testcase_48 | AC | 67 ms
17,400 KB |
testcase_49 | AC | 71 ms
17,536 KB |
testcase_50 | AC | 66 ms
17,276 KB |
testcase_51 | AC | 55 ms
7,288 KB |
testcase_52 | AC | 57 ms
7,164 KB |
ソースコード
#include <cstdio> #include <iostream> #include <string> #include <sstream> #include <stack> #include <algorithm> #include <cmath> #include <queue> #include <map> #include <set> #include <cstdlib> #include <bitset> #include <tuple> #include <assert.h> #include <deque> #include <bitset> #include <iomanip> #include <limits> #include <chrono> #include <random> #include <array> #include <unordered_map> #include <functional> #include <complex> #include <numeric> template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } constexpr long long MAX = 5100000; constexpr long long INF = 1LL << 60; constexpr int inf = 1000000007; //constexpr long long mod = 1000000007LL; //constexpr long long mod = 998244353LL; using namespace std; typedef unsigned long long ull; typedef long long ll; using UnWeightedGraph = vector<vector<int>>; template< typename G > struct StronglyConnectedComponents { const G& g; UnWeightedGraph gg, rg; vector< int > comp, order, used; StronglyConnectedComponents(G& g) : g(g), gg(g.size()), rg(g.size()), comp(g.size(), -1), used(g.size()) { for (int i = 0; i < g.size(); i++) { for (auto e : g[i]) { gg[i].emplace_back((int)e); rg[(int)e].emplace_back(i); } } } int operator[](int k) { return comp[k]; } void dfs(int idx) { if (used[idx]) return; used[idx] = true; for (int to : gg[idx]) dfs(to); order.push_back(idx); } void rdfs(int idx, int cnt) { if (comp[idx] != -1) return; comp[idx] = cnt; for (int to : rg[idx]) rdfs(to, cnt); } void build(UnWeightedGraph& t) { for (int i = 0; i < gg.size(); i++) dfs(i); reverse(begin(order), end(order)); int ptr = 0; for (int i : order) if (comp[i] == -1) rdfs(i, ptr), ptr++; t.resize(ptr); for (int i = 0; i < g.size(); i++) { for (auto& to : g[i]) { int x = comp[i], y = comp[to]; if (x == y) continue; t[x].push_back(y); } } } }; class UnionFind { public: vector<int> Parent; UnionFind(int N) { Parent = vector<int>(N, -1); } int root(int A) { if (Parent[A] < 0) { return A; } return Parent[A] = root(Parent[A]); } long long size(int A) { return -(long long)Parent[root(A)]; } bool connect(int A, int B) { A = root(A); B = root(B); if (A == B) { return false; } if (size(A) < size(B)) { swap(A, B); } Parent[A] += Parent[B]; Parent[B] = A; return true; } }; int main() { /* cin.tie(nullptr); ios::sync_with_stdio(false); */ int n, m; scanf("%d %d", &n, &m); vector<vector<int>> g(n); vector<pair<int, int>> v; UnionFind uni(n); int cnt = 0; int edges = 0; for (int i = 0; i < m; i++) { int a, b, c; scanf("%d %d %d", &a, &b, &c); a--; b--; if (c == 1) { if (!uni.connect(a, b)) { puts("Yes"); return 0; } } else v.emplace_back(a, b); } for (auto p : v) { if (uni.root(p.first) == uni.root(p.second)) { puts("Yes"); return 0; } g[uni.root(p.first)].push_back(uni.root(p.second)); } StronglyConnectedComponents<vector<vector<int>>> scc(g); vector<vector<int>> t; scc.build(t); if (t.size() < n) puts("Yes"); else puts("No"); return 0; }