結果
問題 | No.1023 Cyclic Tour |
ユーザー | ei13337 |
提出日時 | 2020-04-10 23:04:45 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,435 bytes |
コンパイル時間 | 1,573 ms |
コンパイル使用メモリ | 126,884 KB |
実行使用メモリ | 22,088 KB |
最終ジャッジ日時 | 2024-09-15 23:44:03 |
合計ジャッジ時間 | 8,150 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 54 ms
9,728 KB |
testcase_05 | AC | 53 ms
9,728 KB |
testcase_06 | AC | 62 ms
11,136 KB |
testcase_07 | AC | 63 ms
10,368 KB |
testcase_08 | AC | 57 ms
12,032 KB |
testcase_09 | AC | 65 ms
13,440 KB |
testcase_10 | AC | 63 ms
13,568 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 62 ms
14,976 KB |
testcase_15 | WA | - |
testcase_16 | AC | 120 ms
17,408 KB |
testcase_17 | AC | 109 ms
17,664 KB |
testcase_18 | AC | 107 ms
16,768 KB |
testcase_19 | AC | 104 ms
16,640 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 103 ms
11,392 KB |
testcase_26 | AC | 96 ms
11,136 KB |
testcase_27 | AC | 91 ms
10,752 KB |
testcase_28 | AC | 107 ms
15,360 KB |
testcase_29 | AC | 105 ms
16,256 KB |
testcase_30 | AC | 110 ms
15,232 KB |
testcase_31 | AC | 99 ms
14,592 KB |
testcase_32 | AC | 105 ms
15,728 KB |
testcase_33 | AC | 114 ms
14,976 KB |
testcase_34 | AC | 95 ms
11,264 KB |
testcase_35 | AC | 103 ms
11,520 KB |
testcase_36 | WA | - |
testcase_37 | AC | 105 ms
14,060 KB |
testcase_38 | AC | 102 ms
15,488 KB |
testcase_39 | WA | - |
testcase_40 | AC | 104 ms
13,824 KB |
testcase_41 | AC | 109 ms
13,568 KB |
testcase_42 | AC | 106 ms
11,392 KB |
testcase_43 | AC | 88 ms
13,568 KB |
testcase_44 | AC | 57 ms
9,344 KB |
testcase_45 | AC | 73 ms
22,088 KB |
testcase_46 | AC | 56 ms
18,048 KB |
testcase_47 | AC | 55 ms
13,824 KB |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | AC | 84 ms
10,836 KB |
testcase_51 | AC | 84 ms
10,848 KB |
testcase_52 | AC | 84 ms
10,832 KB |
ソースコード
#include <iostream> #include <vector> #include <map> #include <set> #include <unordered_set> #include <unordered_map> #include <stack> #include <queue> #include <algorithm> #include <cassert> #include <random> #include <iomanip> #include <bitset> #define FOR(i, n, m) for(ll i = n; i < (int)m; i++) #define REP(i, n) FOR(i, 0, n) #define ALL(v) v.begin(), v.end() #define pb push_back using namespace std; using ll = long long; using P = pair<ll, ll>; constexpr ll inf = 1000000000; constexpr ll mod = 998244353; constexpr long double eps = 1e-9; struct Edge { int to; int ty; }; vector<vector<Edge>> g; vector<vector<int>> ng; void dfs(int v, vector<int>& gr, int c) { gr[v] = c; for(auto elm: g[v]) { if(gr[elm.to] != -1 || elm.ty == 2) continue; dfs(elm.to, gr, c); } return; } bool dfs2(int v, vector<bool>& used) { used[v] = true; bool ret = false; for(auto elm: ng[v]) { if(used[elm]) ret = true; else ret = ret | dfs2(elm, used); } return ret; } int main() { cin.tie(0); ios::sync_with_stdio(false); int n, m; cin >> n >> m; g.resize(n); REP(i, m) { int a, b, c; cin >> a >> b >> c; a--; b--; if(c == 1) { g[a].pb({b, c}); g[b].pb({a, c}); } else { g[a].pb({b, c}); } } vector<int> gr(n, -1), grc, grec; int c = 0; REP(i, n) { if(gr[i] != -1) continue; dfs(i, gr, c); c++; } grc.assign(c, 0); grec.assign(c, 0); ng.resize(c); REP(i, n) { grc[gr[i]]++; for(auto elm: g[i]) { if(gr[i] != gr[elm.to]) { ng[gr[i]].pb(gr[elm.to]); } else { if(elm.ty == 2 || i < elm.to) grec[gr[i]]++; } } } REP(i, c) { if(grc[i] <= grec[i]) { cout << "Yes" << endl; return 0; } } REP(i, c) { sort(ng[i].begin(), ng[i].end()); ng[i].erase(unique(ng[i].begin(), ng[i].end()), ng[i].end()); } vector<bool> used(c + 1, false); vector<int> indeg(c, 0); REP(i, c) { for(auto adj: ng[i]) indeg[adj]++; } ng.pb({}); REP(i, c) { if(indeg[i] == 0) ng[c].pb(i); } bool ok = false; if((int)ng[c].size() == 0 || dfs2(c, used)) cout << "Yes" << endl; else cout << "No" << endl; return 0; }