반응형
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
- @P0
- 퇴사통보
- BOJ
- 경력
- boj #19237 #어른 상어
- upper_bound
- msSQL
- dfs
- 파라메트릭
- 처우협의
- 이분탐색
- BFS
- 13908
- 백트래킹
- 연결요소
- 소프티어
- Docker
- 매개변수탐색
- incr
- 6987
- softeer
- 물채우기
- compose
- 기술면접
- 성적평가
- 백준
- 처우산정
- 오퍼레터
- OFFSET
- Kafka
Archives
- Today
- Total
기술 블로그
9207번 페그 솔리테어 본문
728x90
반응형
https://www.acmicpc.net/problem/9207
전형적인 백트래킹 문제이다.
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 | #include <iostream> #include <deque> #include <list> #include <queue> #include <stack> #include <cstdio> #include <vector> #include <cstring> #include <string> #include <math.h> #include <algorithm> #include <map> #include <set> #include <functional> #include <unordered_map> #include <unordered_set> #include <tuple> #include <sstream> #pragma warning(disable:4996) #pragma comment(linker, "/STACK:336777216") using namespace std; char Map[6][10]; bool use[6][10] = { false, }; vector<pair<int, int> > v; int dy[4] = { 0, 1, 0, -1 }; int dx[4] = { 1, 0, -1, 0 }; int MIN = 0, moving = 0; int chk() { int ret = 0; for (int i = 0; i < 5; i++) for (int j = 0; j < 9; j++) if (Map[i][j] == 'o') ++ret; return ret; } void simulation(int cnt) { int oc = chk(); if (MIN > oc) { MIN = oc; moving = cnt; } for (int i = 0; i < 5; i++) for (int j = 0; j < 9; j++) if (Map[i][j] == 'o') for (int k = 0; k < 4; k++) { int y = i + dy[k]; int x = j + dx[k]; int ny = i + 2 * dy[k]; int nx = j + 2 * dx[k]; if (ny < 0 || ny >= 5 || nx < 0 || nx >= 9) continue; if (Map[y][x] == 'o' && Map[ny][nx] == '.') { Map[i][j] = '.'; Map[y][x] = '.'; Map[ny][nx] = 'o'; simulation(cnt + 1); Map[i][j] = 'o'; Map[y][x] = 'o'; Map[ny][nx] = '.'; } } } int main(void) { int T = 0; scanf("%d", &T); while (T--) { MIN = 2e9; moving = 0; v.clear(); for (int i = 0; i < 5; i++) for (int j = 0; j < 9; j++) cin >> Map[i][j]; simulation(0); printf("%d %d\n", MIN, moving); } return 0; } | cs |
728x90
반응형
'알고리즘 문제 > BOJ' 카테고리의 다른 글
1867번 돌멩이 제거 (0) | 2019.05.02 |
---|---|
1912번 연속합 (0) | 2019.05.01 |
3184번 양 (0) | 2019.04.30 |
3967번 매직 스타 (0) | 2019.04.23 |
16953번 A → B (0) | 2019.04.22 |