일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 3Dreconstruction
- 코드트리빵
- 이진탐색
- dfs
- 조합
- 시뮬레이션
- 마법의숲탐색
- ISER
- ICER
- 구현
- 왕실의기사대결
- 루돌프의반란
- BFS
- ros
- ARM
- 수영대회결승전
- 토끼와 경주
- 싸움땅
- 코드트리
- 포탑부수기
- Calibration
- 삼성기출
- DenseDepth
- 나무박멸
- 순서대로방문하기
- 마이크로프로세서
- DP
- 슈퍼컴퓨터클러스터
- 백준
- 소프티어
Archives
- Today
- Total
from palette import colorful_colors
[백준] 15684 사다리조작 with C++ (삼성기출) 본문
많이 해맸다..
내 이전코드 왜 안됐는지 꼭 체크하기, 2중 for문에서조합 짜기 다시 꼭 연습하기
-> 이전코드대로 하면 사다리가 하나 건너 있을 경우 오류가 난다! 주어진대로 구현 잘 하기
#define _CRT_SECURE_NO_WARNINGS
#include <iostream>
#include <algorithm>
using namespace std;
int N, M, H, target, answer = -1;
int MAP[31][11];
void input() {
cin >> N >> M >> H;
int a, b;
for (int i = 0; i < M; i++)
{
cin >> a >> b;
MAP[a][b] = 1;
MAP[a][b + 1] = 2;
}
}
// 맵에서 사다리 타고 체크하는 타고, 2를 만나면 왼쪽으로 타게 된다.
bool check() {
for (int i = 1; i <= N; i++) {
int col = i;
int row = 0;
while (row <= H) {
if (MAP[row][col] == 1) { // 오른쪽으로 가는 경우
col++;
}
else if (MAP[row][col] == 2) { // 왼쪽으로 가는 경우
col--;
}
row++;
}
if (col != i)
return false;
}
return true;
}
// DFS로 조합짜면서 체크 - level, 이전 행, 이전 열
void func(int level, int preRow, int preCol) {
if (level == target) {
if (check())
answer = level;
return;
}
// for문 변수 설정 이렇게 해주면 j돌때 이전에 돌았던 거 다시 안돌아도 된다
// 첫 i의 j만 preCol부터 시작하고, 그 다음번엔 정해둔 1부터 시작한다.
// -> 조합 구현이 가능해서 가지치기 효과를 낸다!!
for (int i = preRow; i <= H; i++, preCol = 1) {
for (int j = preCol; j <= N-1; j++) {
if (MAP[i][j])
continue;
if ((MAP[i][j - 1])== 1) // 왼쪽 체크
continue;
if (MAP[i][j + 1] == 1) // 오른쪽 체크
continue;
MAP[i][j] = 1;
MAP[i][j + 1] = 2;
func(level + 1, i, j);
MAP[i][j] = 0;
MAP[i][j + 1] = 0;
}
}
}
void solve() {
// 0번, 1번, 2번, 3번 재귀타는 코드
for (int i = 0; i <= 3; i++) {
target = i;
func(0, 1, 1);
if (answer != -1) {
cout << answer;
return;
}
}
cout << -1;
}
int main() {
freopen("sample_input.txt", "r", stdin);
input();
solve();
return 0;
}
참고한 블로그
https://dingcoding.tistory.com/85
내 이전 코드
#define _CRT_SECURE_NO_WARNINGS
#include <iostream>
#include <algorithm>
using namespace std;
int N, M, H, isPossible;
int MAP[31][11];
void input() {
cin >> N >> M >> H;
int a, b;
for (int i = 0; i < M; i++)
{
cin >> a >> b;
MAP[a][b] = 1;
MAP[a][b + 1] = 1;
}
}
// 맵에서 무지성 사다리 타고 체크하는 함수
bool check() {
for (int i = 1; i <= N; i++){
int col = i;
int row = 0;
while (row <= H) {
if (MAP[row][col] == 1) {
if (col -1>= 1 && MAP[row][col - 1] == 1) // 왼쪽으로 가는 경우
col--;
else if (col +1 <= N && MAP[row][col + 1] == 1) // 오른쪽으로 가는 경우
col++;
}
row++;
}
if (col != i)
return false;
}
return true;
}
void func(int level, int preRow, int preCol) {
if (level == 3) {
if (isPossible != -1) {
isPossible = -1;
}
return;
}
if (check() == true) {
isPossible = level;
return;
}
for (int i = preRow; i <= H-1; i++)
{
for (int j = 1; j <= N-1; j++)
{
if (MAP[i][j] == 1)
continue;
if (j - 1 >= 1 && MAP[i][j - 1] == 1) // 왼쪽 체크
continue;
if (j + 1 <= N && MAP[i][j + 1] == 1) // 오른쪽 체크
continue;
MAP[i][j] = 1;
MAP[i][j + 1] = 1;
func(level + 1, i, j);
MAP[i][j] = 0;
MAP[i][j + 1] = 0;
}
}
}
void solve() {
if (check()) { // 아무것도 안 놓을때 가능한지 먼저 체크하기
cout << 0;
return;
}
isPossible = -1;
func(0, 1, 1);
if (isPossible == -1)
cout << -1;
else
cout << isPossible;
}
int main() {
freopen("sample_input.txt", "r", stdin);
cin.tie(NULL);
cout.tie(NULL);
ios::sync_with_stdio(false);
input();
solve();
return 0;
}
'알고리즘 > 문제풀이' 카테고리의 다른 글
[Softeer] 자동차 테스트 with C++ (HSAT 7회 기출) (0) | 2024.04.01 |
---|---|
[Softeer] 순서대로 방문하기 with C++ (HSAT 7회 기출) (0) | 2024.04.01 |
[백준] 14502 연구소 with C++ (삼성기출) (0) | 2024.03.31 |
[백준] 15683 감시 with C++ (삼성기출) (0) | 2024.03.31 |
[SWEA] 1949 등산로 조성 with C++ (0) | 2024.03.03 |