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
- SWEA
- 백준
- 탄막 이동
- 걷는건귀찮아
- 알고리즘
- 3273
- 탄막 스킬 범위
- 원형
- mysqld.sock
- 영상 프레임 추출
- 수 만들기
- c#
- 강의실2
- 알고리즘 목차
- 윈도우
- 2020 KAKAO BLIND RECRUITMENT
- 유니티
- 토글 그룹
- 마우스 따라다니기
- 자료구조 목차
- 탄막
- 우분투
- 문자열 압축
- 3344
- 회의실 배정
- AI Hub
- 18249
- 그리디알고리즘
- MySQL
- 단어 수학
Archives
- Today
- Total
와이유스토리
[DFS 중복순열] 백준 17070 파이프 옮기기1 C++ 본문
https://www.acmicpc.net/problem/17070
방향 중복하여 선택 가능
#include <bits/stdc++.h>
using namespace std;
int n, ans, board[18][18];
int dx[4] = { 0, 1, 1 };
int dy[4] = { 1, 0, 1 };
void dfs(int x, int y, int dir) {
if ((x == n) && (y == n)) {
ans++;
return;
}
for (int i = 0; i < 3; i++) {
int newX = x + dx[i];
int newY = y + dy[i];
if ((newX == 0) || (newY == 0) || (newX > n) || (newY > n)) continue;
if (i == 0) {
if (dir == 1) continue;
if (board[newY][newX]) continue;
dfs(newX, newY, 0);
}
else if (i == 1) {
if (dir == 0) continue;
if (board[newY][newX]) continue;
dfs(newX, newY, 1);
}
else {
if (board[y + 1][x]) continue;
if (board[y][x + 1]) continue;
if (board[newY][newX]) continue;
dfs(newX, newY, 2);
}
}
}
int main()
{
ios_base::sync_with_stdio(0);
cin.tie(0), cout.tie(0);
cin >> n;
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= n; j++) {
cin >> board[i][j];
}
}
dfs(2, 1, 1); // x = 열, y = 행 (r, c)
cout << ans;
}
'코딩테스트 > 그래프|트리' 카테고리의 다른 글
[DFS 순열/DFS 반복(조합, 순열)] 프로그래머스 불량 사용자 C++ (0) | 2022.02.02 |
---|---|
[DFS 2번(단순, 백트래킹)] 백준 캐슬 디펜스 17135 C++ (0) | 2022.02.02 |
[DFS 순열] SWEA 1768 숫자 야구 게임 C++ (0) | 2022.01.31 |
[DFS 단순] 백준 16637 괄호 추가하기 C++ (0) | 2022.01.31 |
[그래프(벨만 포드)] (CHECK) 백준 11657 타임머신 C++ (0) | 2022.01.27 |
Comments