티스토리 뷰
문제
https://www.acmicpc.net/problem/15675
알고리즘
2-SAT
풀이
강산이가 보석을 훔치기 위해선 행 또는 열에 한 번만 입장을 해야 합니다. 관장 택희가 보석이 도난당할 시, 즉시 경비원을 출동시키기 때문에 두 번 다시 입장이 불가능하기 때문입니다. 훔치는 과정에서 위치추적기를 얻을 시에는 언젠가는 다시 한번 방문을 해서 위치추적기를 떼어 놓아야만 합니다.
즉 박물관 좌표 $y$행,$x$열에 대하여 보석이 위치한 곳에는 $(T(y)\cap F(x))\cup (F(y)\cap T(x))$ 를 만족하며 추적기가 위치한 곳에 대해서는 $(T(y)\cap T(x))\cup (F(y)\cap F(x))$ 를 만족합니다. $T()$는 해당 행 또는 열을 방문한다는 의미이며 $F()$는 방문하지 않는다는 의미입니다. 위 두 식은 2-CNF형태를 만족하지 못하므로 전개를 통해 변형해주도록 합시다.
코드
#include <bits/stdc++.h>
#define rep(i,n) for(int i=0;i<n;++i)
#define REP(i,n) for(int i=1;i<=n;++i)
#define FAST cin.tie(NULL);cout.tie(NULL); ios::sync_with_stdio(false)
using namespace std;
#define T(x) (x<<1)
#define F(x) (x<<1|1)
int n, m, VC, SC;
char x;
vector<vector<int>> adj;
vector<int> discovered, sccid;
stack<int> st;
int scc(int here) {
int ret = discovered[here] = VC++;
st.emplace(here);
for (auto there : adj[here]) {
if (discovered[there] == -1) ret = min(ret, scc(there));
else if (sccid[there] == -1) ret = min(ret, discovered[there]);
}
if (ret == discovered[here]) {
while (1) {
int t = st.top();
st.pop();
sccid[t] = SC;
if (t == here) break;
}
SC++;
}
return ret;
}
void OR(int A, int B) {
adj[A ^ 1].emplace_back(B);
adj[B ^ 1].emplace_back(A);
}
void AOA(int a, int b, int c, int d) {//And or And. 2-CNF형태로 변형
OR(a, c); OR(a, d);
OR(b, c); OR(b, d);
}
int main() {
FAST;
cin >> n >> m;
adj.resize((n + m) << 1);
rep(i, n) rep(j, m) {
int Y = i;
int X = n + j;
cin >> x;
if (x == '#') AOA(T(Y), T(X), F(Y), F(X));
else if (x == '*') AOA(T(Y), F(X), F(Y), T(X));
}
discovered = sccid = vector<int>((n + m) << 1, -1);
rep(i, (n + m) << 1) if (discovered[i] == -1) scc(i);
bool flag = true;
rep(i, n + m) if (sccid[T(i)] == sccid[F(i)]) {
flag = false;
break;
}
cout << flag;
return 0;
}
'Algorithm' 카테고리의 다른 글
[백준 5009] 유치원 (0) | 2020.08.15 |
---|---|
[백준 16915] 호텔 관리 (0) | 2020.08.14 |
[백준 3648] 아이돌 (0) | 2020.08.12 |
[백준 11281] 2-SAT - 4 (0) | 2020.08.10 |
[백준 11280] 2-SAT -3 (0) | 2020.08.09 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- dijkstra
- Fenwick
- 트라이
- 스위핑
- spring boot
- implementation
- bfs
- DP
- 세그먼트트리
- SCC
- 2-SAT
- Segment tree
- spring
- 좌표압축
- union find
- 동적계획법
- Suffix Array
- 이분탐색
- 이분매칭
- 정렬
- kmp
- Oracle
- greedy
- string
- knapsack
- 펜윅트리
- dfs
- sweeping
- hld
- sorting
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
글 보관함