일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 책리뷰
- #알고리즘 #백준 #2573 #백준2573 #algorithm #baekjoon #baekjoon2573 #C++
- #알고리즘 #백준 #1260 #백준1260 #algorithm #baekjoon #baekjoon1260 #Java
- #알고리즘 #algorithm #프로그래머스 #2020카카오공채 #외벽점검 #programmers #C++
- #알고리즘 #백준 #15684 #백준15684 #algorithm #baekjoon #baekjoon15684 #C++
- 개발자취미
- #알고리즘 #백준 #1525 #백준1525 #algorithm #baekjoon #baekjoon1525 #C++
- #알고리즘 #백준 #15683 #백준15683 #algorithm #baekjoon #baekjoon15683 #C++
- #알고리즘 #백준 #17472 #백준17472 #algorithm #baekjoon #baekjoon17472 #C++
- #알고리즘 #백준 #14888 #백준14888 #algorithm #baekjoon #baekjoon14888 #C++
- #알고리즘 #백준 #17140 #백준17140 #algorithm #baekjoon #baekjoon17140 #C++
- #알고리즘 #백준 #3190 #백준3190 #algorithm #baekjoon #baekjoon3190 #C++
- #알고리즘 #백준 #5214 #백준5214 #algorithm #baekjoon #baekjoon5214 #C++
- #알고리즘 #백준 #2352 #백준2352 #algorithm #baekjoon #baekjoon2352 #C++
- #알고리즘 #백준 #17406 #백준17406 #algorithm #baekjoon #baekjoon17406 #C++
- #알고리즘 #백준 #12094 #백준12094 #algorithm #baekjoon #baekjoon12094 #C++
- #알고리즘 #백준 #4386 #백준4386 #algorithm #baekjoon #baekjoon4386 #C++
- #알고리즘 #백준 #2580 #백준2580 #algorithm #baekjoon #baekjoon2580 #Java
- 스레드 #동시성 #thread #process #
- 개발서
- #알고리즘 #백준 #17837 #백준17837 #algorithm #baekjoon #baekjoon17837 #C++
- #알고리즘 #algorithm #프로그래머스 #2020카카오공채 #괄호변환 #programmers #C++
- 클린코드
- #알고리즘 #백준 #2616 #백준2616 #algorithm #baekjoon #baekjoon2616 #Java
- #알고리즘 #백준 #1987 #백준1987 #algorithm #baekjoon #baekjoon1987 #Java
- #알고리즘 #algorithm #프로그래머스 #2020카카오공채 #블록이동하기 #programmers #C++
- CleanCode
- #알고리즘 #algorithm #프로그래머스 #2020카카오공채 #문자열압축 #programmers #C++
- #알고리즘 #백준 #17136 #백준17136 #algorithm #baekjoon #baekjoon17136 #C++
- #알고리즘 #백준 #1793 #백준1793 #algorithm #baekjoon #baekjoon1793 #C++
Archives
- Today
- Total
개발자 일기장.
백준 15684. 사다리 조작 본문
사다리 조작
Problem?
문제 : https://www.acmicpc.net/problem/15684
Solution
dfs 문제
- dfs를 통해 모든 경로를 확인한다.
- 사다리는 순서가 없으므로 계속 내려가게 확인하면 된다.
Code
#include <iostream>
#include <algorithm>
using namespace std;
const int H_MAX = 30 + 2;
const int N_MAX = 10 + 2;
int N, M, H;
bool board[H_MAX][N_MAX];
int ans = 4;
bool isValidLadder(int i, int j) {
if (board[i][j - 1] || board[i][j] || board[i][j + 1])
return false;
return true;
}
bool isCorrectLadder() {
for (int j = 1; j <= N; j++) {
int pos = j;
for (int i = 1; i <= H; i++) {
if (board[i][pos])
pos++;
else if (board[i][pos - 1])
pos--;
}
if (pos != j)
return false;
}
return true;
}
void dfs(int s_i, int cnt) {
// end state
if (cnt > 3) {
return;
}
if (isCorrectLadder()) {
ans = min(ans, cnt);
return;
}
// recursive
for (int i = s_i; i <= H; i++) {
for (int j = 1; j <= N; j++) {
if (isValidLadder(i, j)) {
board[i][j] = true;
dfs(i, cnt + 1);
board[i][j] = false;
}
}
}
}
int main(int argc, const char* argv[]) {
int a, b;
// input
cin >> N >> M >> H;
for (int i = 0; i < M; i++) {
scanf("%d %d", &a, &b);
board[a][b] = true;
}
// solution
dfs(1, 0);
// output
if (ans == 4)
cout << "-1\n";
else
cout << ans << "\n";
return 0;
}
- dfs 변형 문제
'취업 > Algorithm.' 카테고리의 다른 글
백준 17837. 새로운 게임2 (0) | 2020.04.11 |
---|---|
백준 17140. 이차원배열과 연산 (0) | 2020.04.11 |
백준 17472. 다리만들기2 (0) | 2020.04.10 |
백준 17406. 배열 돌리기4 (0) | 2020.03.28 |
[2020 카카오 공채] 블록 이동하기 (0) | 2020.03.22 |