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
- Operating System
- Four Squares
- n타일링2
- 제프리리처
- redis
- 토마토
- C++
- Operating System.
- 우아한레디스
- C#
- 열혈 tcp/ip 프로그래밍
- inflearn
- 스프링 입문
- 우아한 테크 세미나
- BOJ
- OS
- 이펙티브코틀린
- TCP/IP
- 윤성우 저자
- HTTP
- FIFO paging
- Spring
- 운영체제
- 10026번
- Window-Via-c/c++
- 2475번
- 에러핸들링
- 스프링 핵심 원리
- 열혈 TCP/IP 소켓 프로그래밍
- 김영한
Archives
- Today
- Total
나의 브을로오그으
[c++] 10026번 : 적록색약 본문
https://www.acmicpc.net/problem/10026
#include <iostream>
#include <string>
#include <stack>
using namespace std;
#define MAX_SIZE 100
bool IsValidate(char ch, char picture, bool isNormal)
{
if (isNormal == true || picture == 'B')
{
return ch == picture;
}
else
{
return ch == 'R' || ch == 'G';
}
}
void CheckBoard(
int N,
string board[],
bool pass[][MAX_SIZE],
bool isNormal,
int x, int y
) {
int offX[] = { -1, 0, 1, 0 };
int offY[] = { 0, -1, 0, 1 };
stack<pair<int, int>> st;
char picture = board[y][x];
bool isPush = false;
st.emplace(x, y);
while (!st.empty())
{
pair<int, int> node = st.top();
int curX = node.first;
int curY = node.second;
pass[curY][curX] = true;
for (int i = 0; i < 4; ++i)
{
int toX = curX + offX[i];
int toY = curY + offY[i];
if (toX < 0 || toY < 0 || toX >= N || toY >= N || pass[toY][toX] == true)
{
continue;
}
else
{
if (IsValidate(board[toY][toX], picture, isNormal) == true)
{
isPush = true;
st.emplace(toX, toY);
break;
}
}
}
if (isPush == false)
{
st.pop();
}
else
{
isPush = false;
}
}
return;
}
int Progress(int N, string board[], bool isNormal)
{
int result = 0;
bool pass[MAX_SIZE][MAX_SIZE] = { false, };
for (int i = 0; i < N; ++i)
{
for (int j = 0; j < N; ++j)
{
if (pass[i][j] == true)
{
continue;
}
else
{
++result;
CheckBoard(N, board, pass, isNormal, j, i);
}
}
}
return result;
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(NULL);
string board[MAX_SIZE];
int N;
cin >> N;
cin.ignore();
for (int i = 0; i < N; ++i)
{
getline(cin, board[i]);
}
int r1 = Progress(N, board, true);
int r2 = Progress(N, board, false);
cout << r1 << ' ' << r2 << '\n';
return 0;
}
'알고리즘 > BaekJoon' 카테고리의 다른 글
[c++] 9019번 : DSLR (0) | 2022.10.27 |
---|---|
[c++] 7662번 : 이중 우선순위 큐 (0) | 2022.10.26 |
[c++] 7576번 : 토마토 (0) | 2022.10.21 |
[c++] 7569번 : 토마토 (0) | 2022.10.19 |
[c++] 18870번 : 좌표 압축 (0) | 2022.10.12 |