반응형
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
- incr
- 처우협의
- OFFSET
- compose
- 성적평가
- dfs
- 퇴사통보
- BFS
- 경력
- 처우산정
- 소프티어
- 오퍼레터
- Kafka
- msSQL
- 기술면접
- 파라메트릭
- 물채우기
- upper_bound
- 백준
- 6987
- softeer
- 백트래킹
- 매개변수탐색
- BOJ
- 13908
- @P0
- boj #19237 #어른 상어
- 연결요소
- Docker
- 이분탐색
Archives
- Today
- Total
기술 블로그
16571번 알파 틱택토 본문
728x90
반응형
https://www.acmicpc.net/problem/16571
2018년 서강대학교 프로그래밍 대회 문제이다.
종만북의 틱택토 코드를 활용하였더니, 맞았다.
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 | #include <iostream> #include <queue> #include <stack> #include <cstdio> #include <vector> #include <cstring> #include <string> #include <math.h> #include <algorithm> #include <map> using namespace std; char Map[4][4]; bool isFinished(char turn) { // 가로 for (int i = 0; i < 3; i++) { for (int j = 0; j < 3; j++) { if (Map[i][j] != turn) break; if (j == 2) return true; } } // 세로 for (int j = 0; j < 3; j++) { for (int i = 0; i < 3; i++) { if (Map[i][j] != turn) break; if (i == 2) return true; } } // 오른쪽 아래 대각선 for (int i = 0; i < 3; i++) { if (Map[i][i] != turn) break; if (i == 2) return true; } // 왼쪽 아래 대각선 for (int i = 0; i < 3; i++) { if (Map[i][2 - i] != turn) break; if (i == 2) return true; } return false; } int backtracking(char turn) { if (isFinished('x' + 'o' - turn)) return -1; int minValue = 2; for (int i = 0; i < 3; i++) { for (int j = 0; j < 3; j++) { if (Map[i][j] == '.') { Map[i][j] = turn; minValue = min(minValue, backtracking('o' + 'x' - turn)); Map[i][j] = '.'; } } } if (minValue == 2 || minValue == 0) return 0; return -minValue; } int main(void) { int num = 0, cnt = 0; for (int i = 0; i < 3; i++) { for (int j = 0; j < 3; j++) { scanf("%d", &num); if (num == 0) Map[i][j] = '.'; else if (num == 1) Map[i][j] = 'x'; else if (num == 2) Map[i][j] = 'o'; if (num != 0) ++cnt; } } char start = 'x'; if (cnt % 2 != 0) start = 'o'; switch (backtracking(start)) { case -1: printf("L\n"); break; case 0: printf("D\n"); break; case 1: printf("W\n"); break; default: break; } return 0; } | cs |
728x90
반응형
'알고리즘 문제 > BOJ' 카테고리의 다른 글
10798번 세로읽기 (0) | 2019.01.09 |
---|---|
10819번 차이를 최대로(next_permutation 활용) (0) | 2019.01.09 |
12759번 틱! 택! 토! (0) | 2019.01.08 |
4811번 알약 (0) | 2019.01.07 |
1799번 비숍 (0) | 2019.01.07 |