Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- mysqld.sock
- 회의실 배정
- 탄막 스킬 범위
- 자료구조 목차
- SWEA
- c#
- 그리디알고리즘
- AI Hub
- 걷는건귀찮아
- 백준
- 탄막
- 문자열 압축
- 알고리즘 목차
- 윈도우
- 토글 그룹
- 강의실2
- 원형
- 3273
- 3344
- MySQL
- 수 만들기
- 단어 수학
- 18249
- 유니티
- 마우스 따라다니기
- 탄막 이동
- 알고리즘
- 우분투
- 영상 프레임 추출
- 2020 KAKAO BLIND RECRUITMENT
Archives
- Today
- Total
와이유스토리
[DFS 백트래킹] 백준 15684 사다리 조작 C++ 본문
https://www.acmicpc.net/problem/15684
#include <iostream>
#include <vector>
using namespace std;
int n, m, h;
int ans = 4;
vector<vector<int>> v;
bool check()
{
for (int i = 1; i <= n; i++)
{
int temp = i;
for (int j = 1; j <= h; j++)
{
if (v[j][temp] == 1) temp++;
else if (v[j][temp - 1] == 1) temp--;
}
if (temp != i) return false;
}
return true;
}
void dfs(int x, int y, int depth)
{
if (check() == true)
{
ans = min(ans, depth);
return;
}
if (ans <= depth) return;
if (depth == 3) return;
for (int i = y; i <= h; i++) // DFS 안에 for문 위치
{
for (int j = x; j <= n; j++)
{
if ((v[i][j] == 0) && (v[i][j - 1] == 0) && (v[i][j + 1] == 0))
{
v[i][j] = 1;
dfs(j, i, depth + 1);
v[i][j] = 0;
}
}
x = 1;
}
}
int main()
{
ios_base::sync_with_stdio(0);
cin.tie(0), cout.tie(0);
cin >> n >> m >> h;
v.resize(h + 2, vector<int>(n + 2, 0));
for (int i = 0; i < m; i++)
{
int a, b;
cin >> a >> b;
v[a][b] = 1;
}
dfs(1, 1, 0);
if (ans == 4)
{
cout << -1;
}
else
{
cout << ans;
}
}
'코딩테스트 > 그래프|트리' 카테고리의 다른 글
[DFS 조합] 백준 15650 N과 M(2) / 15655 N과 M(6) C++ (0) | 2022.01.22 |
---|---|
[DFS 순열] 백준 15649 N과 M(1) / 15654 N과 M(5) C++ (0) | 2022.01.22 |
[DFS 단순 반복, BFS 반복, 크루스칼] 백준 17472 다리 만들기2 C++ (0) | 2022.01.22 |
[DFS 백트래킹] 백준 17136 색종이 붙이기 C++ (0) | 2022.01.22 |
[그래프(프림)] (CHECK) 프로그래머스 섬 연결하기 C++ (0) | 2022.01.22 |
Comments