
접근
https://www.acmicpc.net/problem/11280
11280번: 2-SAT - 3
첫째 줄에 변수의 개수 N (1 ≤ N ≤ 10,000)과 절의 개수 M (1 ≤ M ≤ 100,000)이 주어진다. 둘째 줄부터 M개의 줄에는 절이 주어진다. 절은 두 정수 i와 j (1 ≤ |i|, |j| ≤ N)로 이루어져 있으며, i와 j가
www.acmicpc.net
위와 같은 식이 있을 때, f가 true 이기 위해서는 각각의
주어진 식의 모든 요소들을 이와 같이 변환하여 그래프로 표현한다면, f 가 true 로 성립하기 위해서는 해당 그래프가 이루는 선후관계의 요소들이 모순되는 점이 없어야 할 것이다. 즉 SCC 로 해당 그래프를 분류하였을 때 같은 SCC에
코드
#include <algorithm>
#include <iostream>
#include <stack>
#include <vector>
using namespace std;
#define endl '\n'
#define MAX_N 22
#define MAX_M 101
int N, M;
vector<int> Path[MAX_N * 2];
int id, sccNum;
int scc_id[MAX_N * 2];
int scc_finished[MAX_N * 2];
int sn[MAX_N * 2];
stack<int> scc_stack;
int Not(int a) {
return (N < a ? a - N : a + N);
}
// SCC 알고리즘
int dfs(int c) {
scc_id[c] = ++id;
scc_stack.push(c);
int res = scc_id[c];
for (int next : Path[c]) {
if (scc_id[next] == 0) {
res = min(res, dfs(next));
} else if (!scc_finished[next]) {
res = min(res, scc_id[next]);
}
}
if (res == scc_id[c]) {
// 같은 SCC 끼리는 같은 숫자의 sn[x] 값을 갖게 된다.
while (1) {
int t = scc_stack.top();
scc_stack.pop();
scc_finished[t] = 1;
sn[t] = sccNum;
if (t == c) break;
}
sccNum++;
}
return res;
}
// 같은 SCC 에 x 와 ~x 가 동시에 포함되는지 체크하는 함수
int Check() {
for (int i = 1; i <= N; i++) {
if (sn[i] == sn[i + N]) return 0;
}
return 1;
}
int main(int argc, char** argv) {
// freopen 주석 처리
freopen("input.txt", "r", stdin);
ios::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> N >> M;
int a, b;
for (int i = 0; i < M; i++) {
cin >> a >> b;
if (a < 0) a = -a + N;
if (b < 0) b = -b + N;
Path[Not(a)].push_back(b);
Path[Not(b)].push_back(a);
}
for (int i = 1; i <= 2 * N; i++) {
if (scc_id[i] == 0) dfs(i);
}
if (Check()) {
cout << 1 << endl;
} else {
cout << 0 << endl;
}
return 0;
}
더 생각해 볼 것?
...
코드나 내용 관련 조언, 부족한 점 및 질문 언제든 환영합니다!
반응형
'코딩 > 백준 (C++)' 카테고리의 다른 글
백준 11505번: 구간 곱 구하기 (C++) (0) | 2022.05.19 |
---|---|
백준 11281번: 2-SAT - 4 (C++) (0) | 2022.05.19 |
백준 4013번: ATM (C++) (0) | 2022.05.18 |
백준 13344번: Chess Tournament (C++) (0) | 2022.05.18 |
백준 14442번: 벽 부수고 이동하기 2 (C++) (0) | 2022.05.17 |
최근댓글