반응형
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
- BFS
- 소프티어
- 백트래킹
- 처우산정
- 경력
- Kafka
- 이분탐색
- BOJ
- incr
- 물채우기
- softeer
- 성적평가
- 오퍼레터
- 처우협의
- 연결요소
- Docker
- compose
- upper_bound
- 퇴사통보
- boj #19237 #어른 상어
- 기술면접
- 13908
- 파라메트릭
- msSQL
- OFFSET
- dfs
- @P0
Archives
- Today
- Total
기술 블로그
18430번 무기 공학 본문
728x90
반응형
https://www.acmicpc.net/problem/18430
# 탐색 # dfs # 복습 # 구현 # 브루트포스 # 추천 # 코딩 # 코테 # 백트래킹 # back
백트래킹 문제이다.
현재 좌표에서 방문하는 경우, 방문하지 않는 경우까지 모두 고려해준다.
나머지는 주석 참고
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 128 129 130 | #include <bits/stdc++.h> using namespace std; #define Max 6 // 각 좌표를 곱셈으로 활용할 것임 vector<vector<vector<int> > > v = { { { 1, 2 }, { 0, 1 } }, { { 0, 1 }, { 1, 2 } }, { { 1, 0 }, { 2, 1 } }, { { 2, 1 }, { 1, 0 } }, }; int R, C, m[Max][Max], ans; bool use[Max][Max]; // 방문했는지 여부 // 범위와 이미 방문했는지 검사 bool chk(int r, int c, int number) { if (r == R - 1 || c == C - 1) { return false; } if (number == 0) { if (use[r][c] || use[r][c + 1] || use[r + 1][c + 1]) { return false; } } else if (number == 1) { if (use[r][c + 1] || use[r + 1][c + 1] || use[r + 1][c]) { return false; } } else if (number == 2) { if (use[r][c] || use[r + 1][c] || use[r + 1][c + 1]) { return false; } } else if (number == 3) { if (use[r][c] || use[r][c + 1] || use[r + 1][c]) { return false; } } return true; } int draw(int r, int c, int number, bool b) { if (number == 0) { use[r][c] = use[r][c + 1] = use[r + 1][c + 1] = b; } else if (number == 1) { use[r][c + 1] = use[r + 1][c + 1] = use[r + 1][c] = b; } else if (number == 2) { use[r][c] = use[r + 1][c] = use[r + 1][c + 1] = b; } else if (number == 3) { use[r][c] = use[r][c + 1] = use[r + 1][c] = b; } return m[r][c] * v[number][0][0] + m[r][c + 1] * v[number][0][1] + m[r + 1][c] * v[number][1][0] + m[r + 1][c + 1] * v[number][1][1]; } void dfs(int r, int c, int total) { if (c == C - 1) { ++r; c = 0; } if (r == R - 1) { ans = max(ans, total); return; } for (int i = 0; i < 4; i++) { if (chk(r, c, i)) { // 방문하고 넘어가는 경우 int score = draw(r, c, i, true); dfs(r, c + 1, total + score); draw(r, c, i, false); } } // 방문하지 않고, 그냥 다음으로 넘어가는 경우 dfs(r, c + 1, total); } int main() { cin.tie(0); scanf("%d %d", &R, &C); for (int i = 0; i < R; i++) { for (int j = 0; j < C; j++) { scanf("%d", &m[i][j]); } } // 2 x 2 사각형을 만들 수 없는 경우 if (R == 1 || C == 1) { printf("0\n"); return 0; } dfs(0, 0, 0); printf("%d\n", ans); return 0; } | cs |
728x90
반응형
'알고리즘 문제 > BOJ' 카테고리의 다른 글
16954번 움직이는 미로 탈출 (0) | 2020.02.27 |
---|---|
11967번 불켜기 (0) | 2020.02.27 |
3019번 테트리스 (0) | 2020.02.26 |
18310번 안테나 (3) | 2020.02.25 |
2504번 괄호의 값 (0) | 2020.01.22 |