結果
問題 | No.2536 同値性と充足可能性 |
ユーザー | maeshun |
提出日時 | 2023-11-11 09:39:34 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,624 bytes |
コンパイル時間 | 4,850 ms |
コンパイル使用メモリ | 238,444 KB |
実行使用メモリ | 8,320 KB |
最終ジャッジ日時 | 2024-09-26 02:40:51 |
合計ジャッジ時間 | 8,491 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
6,948 KB |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 2 ms
6,944 KB |
testcase_14 | WA | - |
testcase_15 | AC | 2 ms
6,940 KB |
testcase_16 | AC | 2 ms
6,940 KB |
testcase_17 | AC | 3 ms
6,944 KB |
testcase_18 | WA | - |
testcase_19 | AC | 2 ms
6,940 KB |
testcase_20 | AC | 7 ms
6,940 KB |
testcase_21 | AC | 8 ms
6,940 KB |
testcase_22 | AC | 8 ms
6,940 KB |
testcase_23 | AC | 72 ms
6,944 KB |
testcase_24 | AC | 73 ms
6,944 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:39:14: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions] 39 | for(auto [d,f] : e){ | ^ main.cpp:77:13: warning: 'sum0' may be used uninitialized [-Wmaybe-uninitialized] 77 | if(sum0>=sum1) { | ^~ main.cpp:74:17: note: 'sum0' was declared here 74 | int sum0, sum1 = 0; | ^~~~
ソースコード
#include <bits/stdc++.h> using namespace std; #include <atcoder/all> using namespace atcoder; #define rep(i, n) for(int i=0;i<(n);++i) #define rep1(i, n) for(int i=1;i<=(n);i++) #define ll long long using mint = modint998244353; using P = pair<ll,ll>; using lb = long double; using T = tuple<ll, ll, ll>; #ifdef LOCAL # include <debug_print.hpp> # define dbg(...) debug_print::multi_print(#__VA_ARGS__, __VA_ARGS__) #else # define dbg(...) (static_cast<void>(0)) #endif int main() { int n, m; cin >> n >> m; dsu uf(n); vector<vector<int>> g(n); vector<pair<int,int>> e; rep(i,m){ int a, b; string s; cin >> a >> s >> b; --a;--b; if(s=="<==>"){ uf.merge(a,b); } else{ e.emplace_back(a,b); } } dbg(uf.groups()); for(auto [d,f] : e){ g[uf.leader(d)].push_back(uf.leader(f)); g[uf.leader(f)].push_back(uf.leader(d)); } dbg(g); //二部グラフ判定 vector<int> color(n, -1); auto dfs = [&](auto dfs, int u, int c) -> bool { color[u] = c; for(int v : g[u]){ if(color[v] == c) return false; if(color[v]==-1 && !dfs(dfs,v, c^1)) return false; } return true; }; vector<bool> vis(n); vector<vector<int>> cnt(2); auto dfs2 = [&](auto dfs2, int u) -> void { vis[u] = true; cnt[color[u]].push_back(u); for(int v : g[u]){ if(!vis[v]) dfs2(dfs2,v); } }; int ans = 0; vector<int> t(n); rep(i,n){ if(color[i]==-1 && uf.leader(i)==i){ if(!dfs(dfs,i,0)){ cout<< "No" << endl; return 0; } cnt = vector<vector<int>>(2); dfs2(dfs2,i); dbg(cnt); int sum0, sum1 = 0; for(int c : cnt[0]) sum0 += uf.size(c); for(int c : cnt[1]) sum1 += uf.size(c); if(sum0>=sum1) { for(int c : cnt[0]) { t[c] = 1; } } else{ for(int c : cnt[1]) t[c] = 1; } ans += max(sum0,sum1); } } if(ans>=(n+1)/2){ cout << "Yes" << endl; cout << ans << endl; vector<int> r; rep(i,n){ if(t[uf.leader(i)]) r.push_back(i+1); } rep(i,r.size()){ cout << r[i]; if(i!=r.size()-1){ cout << " "; } } cout << endl; return 0; } cout << "No" << endl; return 0; }