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 |
Tags
- 자료구조
- 우선순위 큐
- 다익스트라
- 트리
- 그래프
- 다이나믹 프로그래밍
- 유니티
- 재귀
- 투 포인터
- XR Interaction Toolkit
- 유니온 파인드
- DFS
- 백준
- 구현
- 문자열
- 백트래킹
- 브루트포스
- BFS
- Team Fortress 2
- VR
- 수학
- 시뮬레이션
- 누적 합
- 스택
- 그리디 알고리즘
- 정렬
- Unreal Engine 5
- ue5
- c++
- 알고리즘
Archives
- Today
- Total
1일1알
백준 2072번 오목 C++ 본문
https://www.acmicpc.net/problem/2072
단순한 구현 문제
#include <iostream>
#include <string>
#include <vector>
#include <math.h>
#include <algorithm>
#include <utility>
#include <stack>
#include <queue>
#include <math.h>
#include <set>
#include <map>
#include <list>
#include <unordered_map>
#include <unordered_set>
#include <iomanip>
#include <limits.h>
using namespace std;
using int64 = long long;
enum class StoneType {
NOTHING,
BLACK,
WHITE
};
enum Dir {
UP,
UR,
RIGHT,
DR,
DOWN,
DL,
LEFT,
UL
};
int n;
int ans = -1;
int dRow[8] = { -1,-1,0,1,1,1,0,-1 };
int dCol[8] = { 0,1,1,1,0,-1,-1,-1 };
vector<vector<StoneType>> board;
int GetSameStoneCnt(int row, int col, StoneType stoneType, Dir dir) {
int ret = 0;
while (true) {
row += dRow[(int)dir];
col += dCol[(int)dir];
if (row <= 0 || row >= 20) break;
if (col <= 0 || col >= 20) break;
if (board[row][col] != stoneType) break;
ret++;
}
return ret;
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
board = vector<vector<StoneType>>(20, vector<StoneType>(20, StoneType::NOTHING));
cin >> n;
StoneType currType = StoneType::NOTHING;
for (int i = 1; i <= n; i++) {
if (i % 2 == 0) currType = StoneType::WHITE;
else currType = StoneType::BLACK;
int r, c;
cin >> r >> c;
board[r][c] = currType;
int val1 = GetSameStoneCnt(r, c, currType, UP) + GetSameStoneCnt(r, c, currType, DOWN);
int val2 = GetSameStoneCnt(r, c, currType, UR) + GetSameStoneCnt(r, c, currType, DL);
int val3 = GetSameStoneCnt(r, c, currType, RIGHT) + GetSameStoneCnt(r, c, currType, LEFT);
int val4 = GetSameStoneCnt(r, c, currType, DR) + GetSameStoneCnt(r, c, currType, UL);
if (val1 == 4 || val2 == 4 || val3 == 4 || val4 == 4) {
ans = i;
break;
}
}
cout << ans;
}
'알고리즘' 카테고리의 다른 글
백준 20920번 영단어 암기는 괴로워 C++ (0) | 2022.12.23 |
---|---|
백준 16924번 십자가 찾기 C++ (0) | 2022.12.22 |
백준 23757번 아이들과 선물 상자 C++ (0) | 2022.12.20 |
백준 11909번 배열 탈출 C++ (0) | 2022.12.18 |
백준 6443번 애너그램 C++ (0) | 2022.12.17 |