반응형
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
- 처우협의
- 6987
- compose
- softeer
- 백준
- OFFSET
- 기술면접
- BFS
- Docker
- @P0
- 소프티어
- 매개변수탐색
- msSQL
- 퇴사통보
- BOJ
- upper_bound
- 처우산정
- 성적평가
- boj #19237 #어른 상어
- 13908
- 파라메트릭
- incr
- 물채우기
- 이분탐색
- dfs
- 연결요소
- 경력
- 백트래킹
- 오퍼레터
- Kafka
Archives
- Today
- Total
기술 블로그
2105번 디저트 카페 본문
728x90
반응형
어려웠던 문제였다
단순 BFS 문제인줄 알고, BFS로 접근하였다가 아닌 것 같아서 바로 다른 풀이를 생각해보려 하였으나,
잘 떠오르지가 않았다.
그래서 다른 분의 코드를 참고하였다. 풀이 ebook도 참고하였다.
백트래킹 문제인줄은 몰랐다.
열심히 공부해야겠다.
문제 : https://www.swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV5VwAr6APYDFAWu
풀이 : https://www.swexpertacademy.com/main/learn/course/lectureHtmlViewer.do
<백트래킹>
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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 | #include <iostream> #include <queue> #include <cstdio> #include <vector> #include <cstring> #include <string> #include <math.h> #include <algorithm> using namespace std; int map[21][21] = { 0, }; int N = 0; int result = -1; int dy[4] = { 1, 1, -1, -1 }; int dx[4] = { 1, -1, -1, 1 }; bool visit[101] = { false, }; int sy = 0, sx = 0; // 시작 점 void DFS(int row, int column, int pos, int Count) { int y = row + dy[pos]; int x = column + dx[pos]; if (pos == 3 && y == sy && x == sx) { // pos가 3이라는 뜻은, 0부터 시작한 pos가 한 바퀴 다 돌았다는 뜻 result = max(result, Count); return; } if (0 <= y && y < N && 0 <= x && x < N && !visit[map[y][x]]) // 방문하지 않았던 곳이어야만 함 { visit[map[y][x]] = true; DFS(y, x, pos, Count + 1); // 방향 전환 없이 쭉 간다 if (pos < 3) { // 위에서 방향 전환 없이 쭉 가다가, // 그 함수가 끝나면(갈 수 있는 곳 까지 갔다면) 이제는 방향 전환을 해야한다. DFS(y, x, pos + 1, Count + 1); // pos가 3 미만 이라는 뜻은 아직 원래 출발점으로 도달하지 않았다는 뜻 } visit[map[y][x]] = false; // 다음 진행을 위해, 다시 false로 바꿔준다. } } int main(void) { int T = 0; scanf("%d", &T); for (int tc = 1; tc <= T; tc++) { scanf("%d", &N); for (int i = 0; i < N; i++) { for (int j = 0; j < N; j++) { scanf("%d", &map[i][j]); } } for (int i = 0; i < N; i++) { for (int j = 0; j < N; j++) { sy = i; sx = j; visit[map[i][j]] = true; // 길이에 그 자신도 포함이므로, Count는 1부터 시작 DFS(i, j, 0, 1); visit[map[i][j]] = false; // 다음 진행을 위해 false로 바꿔준다. } } printf("#%d %d\n", tc, result); result = -1; } return 0; } | cs |
<단순 구현>
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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 | #include <iostream> #include <queue> #include <cstdio> #include <vector> #include <cstring> #include <string> #include <math.h> #include <algorithm> using namespace std; int map[21][21] = { 0, }; int N = 0; int result = -1; int dy[4] = { 1, 1, -1, -1 }; int dx[4] = { 1, -1, -1, 1 }; bool visit[101] = { false, }; int sy = 0, sx = 0; // 시작 점 void solve() { for (int i = 0; i < N; i++) { for (int j = 0; j < N; j++) { for (int a = 1; a < N; a++) { for (int b = 1; b < N; b++) { if (j + a < N // 오른쪽 범위 && i + a + b <N // 아래 범위 && j - b >= 0 // 왼쪽 범위 && 2 * (a + b) > result) // 이전에 구했던 값보다 크다면 { memset(visit, false, sizeof(visit)); bool stop = false; int curi = i, curj = j; // 우측 하단 for (int n = 0; n < a; n++) { ++curi; ++curj; if (!visit[map[curi][curj]]) visit[map[curi][curj]] = true; else stop = true; } if (stop) continue; // 좌측 하단 for (int n = 0; n < b; n++) { ++curi; --curj; if (!visit[map[curi][curj]]) visit[map[curi][curj]] = true; else stop = true; } if (stop) continue; // 좌측 상단 for (int n = 0; n < a; n++) { --curi; --curj; if (!visit[map[curi][curj]]) visit[map[curi][curj]] = true; else stop = true; } if (stop) continue; // 우측 상단 for (int n = 0; n < b; n++) { --curi; ++curj; if (!visit[map[curi][curj]]) visit[map[curi][curj]] = true; else stop = true; } if (stop) continue; result = 2 * (a + b); } } } } } } int main(void) { int T = 0; scanf("%d", &T); for (int tc = 1; tc <= T; tc++) { scanf("%d", &N); for (int i = 0; i < N; i++) { for (int j = 0; j < N; j++) { scanf("%d", &map[i][j]); } } solve(); printf("#%d %d\n", tc, result); result = -1; } return 0; } | cs |
728x90
반응형
'알고리즘 문제 > SW Expert Academy' 카테고리의 다른 글
2477번 차량 정비소 (0) | 2018.09.14 |
---|---|
2117번 홈 방범 서비스 (0) | 2018.09.01 |
2382번 미생물 격리 (0) | 2018.08.29 |
1952번 수영장 (0) | 2018.08.27 |
1953번 탈주범 검거 (0) | 2018.08.25 |