結果

問題 No.2536 同値性と充足可能性
ユーザー hiro1729hiro1729
提出日時 2023-08-20 19:31:51
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,352 bytes
コンパイル時間 3,906 ms
コンパイル使用メモリ 272,284 KB
実行使用メモリ 20,544 KB
最終ジャッジ日時 2024-05-08 02:39:02
合計ジャッジ時間 7,675 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 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 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 WA -
testcase_10 AC 2 ms
5,376 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 8 ms
5,376 KB
testcase_21 AC 8 ms
5,376 KB
testcase_22 AC 8 ms
5,376 KB
testcase_23 AC 71 ms
5,376 KB
testcase_24 AC 72 ms
5,376 KB
testcase_25 AC 152 ms
18,692 KB
testcase_26 AC 160 ms
19,460 KB
testcase_27 AC 128 ms
16,716 KB
testcase_28 AC 168 ms
20,544 KB
testcase_29 AC 146 ms
18,932 KB
testcase_30 AC 125 ms
18,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// 嘘解法WA

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

int main() {
	int n, m;
	cin >> n >> m;
	assert(2 <= n && n <= 100000);
	assert(1 <= m && m <= min(100000, n * (n - 1)));
	vector<pair<int, int>> same, notsame;
	for (int i = 0; i < m; i++) {
		int x, y; string e;
		cin >> x >> e >> y;
		x--; y--;
		if (e == "<==>") same.push_back({x, y});
		else notsame.push_back({x, y});
	}
	dsu uf(n);
	// 「同じ」の要望についてUnionFindの辺を張る
	for (auto i: same) {
		uf.merge(i.first, i.second);
	}
	// 「同じ」の連結成分に「違う」がある場合はだめ
	for (auto i: notsame) {
		if (uf.same(i.first, i.second)) {
			cout << "No\n";
			return 0;
		}
	}
	// 連結成分を求める
	auto gr = uf.groups();
	int ns = gr.size();
	vector<vector<int>> lds(ns);
	map<int, int> ld; // 頂点→leaderの番号
	for (int i = 0; i < ns; i++) {
		lds[i] = gr[i];
		for (int j: gr[i]) ld[j] = i;
	}
	// 「違う」の辺を張る
	vector<vector<int>> g(ns);
	for (auto i: notsame) {
		int ldx = ld[i.first], ldy = ld[i.second];
		g[ldx].push_back(ldy);
		g[ldy].push_back(ldx);
	}
	// 二部グラフ判定
	vector<int> col(ns, -1);
    for (int u = 0; u < ns; u++) {
        if (col[u] != -1) {
        	continue;
        }
        col[u] = 0;
        queue<int> q;
        q.push(u);
        while (!q.empty()) {
            int v = q.front();
            q.pop();
            for (auto nv : g[v]) {
                if (col[nv] != -1) {
                    if (col[nv] == col[v]) {
                    	cout << "No\n";
                    	return 0;
                    }
                    continue;
                }
                col[nv] = 1 - col[v];
                q.push(nv);
            }
        }
    }
    vector<int> c0, c1;
    for (int i = 0; i < n; i++) {
    	if (col[ld[i]]) c1.push_back(i + 1);
    	else c0.push_back(i + 1);
    }
    cout << "Yes\n";
    // if (c0.size() * 2 >= n) {
    	int c0s = c0.size();
    	cout << c0s << '\n';
    	for (int i = 0; i < c0s - 1; i++) {
    		cout << c0[i] << ' ';
    	}
    	cout << c0[c0s - 1] << '\n';
    // }
    /*
    else {
    	int c1s = c1.size();
    	cout << c1s << '\n';
    	for (int i = 0; i < c1s - 1; i++) {
    		cout << c1[i] << ' ';
    	}
    	cout << c1[c1s - 1] << '\n';
    }
    */
}
0