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
- 스프링 입문
- HTTP
- 운영체제
- inflearn
- 제프리리처
- 스프링 핵심 원리
- 우아한 테크 세미나
- 열혈 TCP/IP 소켓 프로그래밍
- 2475번
- 이펙티브코틀린
- BOJ
- n타일링2
- Spring
- 열혈 tcp/ip 프로그래밍
- FIFO paging
- 10026번
- Window-Via-c/c++
- C++
- 에러핸들링
- OS
- Operating System
- 토마토
- 윤성우 저자
- Four Squares
- C#
- redis
- 우아한레디스
- 김영한
- Operating System.
- TCP/IP
Archives
- Today
- Total
나의 브을로오그으
[c++] 1018번 : 체스판 다시 칠하기 본문
https://www.acmicpc.net/problem/1018
#include <iostream>
using namespace std;
int countOfModifyBlock(char aInputBoard[][51], int x, int y, char aBlackBoard[][8], char aWhiteBoard[][8])
{
int nWCnt = 0;
int nBCnt = 0;
for (int i = 0; i < 8; ++i)
{
for (int j = 0; j < 8; ++j)
{
nBCnt += aInputBoard[y + i][x + j] - aBlackBoard[i][j] == 0 ? 0 : 1;
nWCnt += aInputBoard[y + i][x + j] - aWhiteBoard[i][j] == 0 ? 0 : 1;
}
}
return nBCnt < nWCnt ? nBCnt : nWCnt;
}
int Abs(int n)
{
return n < 0 ? ~n + 1 : n;
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(NULL);
// setup
char aBlock[2] = { 'B', 'W' };
char aBlackBoard[8][8] = { 0, };
char aWhiteBoard[8][8] = { 0, };
for (int i = 0; i < 8; ++i)
{
for (int j = 0; j < 8; ++j)
{
int nbx = Abs(i % 2 - j % 2);
int nwx = Abs(1 - i % 2 - j % 2);
aBlackBoard[i][j] = aBlock[nbx];
aWhiteBoard[i][j] = aBlock[nwx];
}
}
// input
char aInputBoard[51][51] = { 0, };
int nWidth = 0;
int nHeight = 0;
int nCnt = 32;
cin >> nHeight >> nWidth;
for (int i = 0; i < nHeight; ++i)
{
cin >> aInputBoard[i];
}
// calc
for (int i = 0; i <= nHeight - 8; ++i)
{
for (int j = 0; j <= nWidth - 8; ++j)
{
int nTempCnt = countOfModifyBlock(aInputBoard, j, i, aBlackBoard, aWhiteBoard);
nCnt = nTempCnt < nCnt ? nTempCnt : nCnt;
}
}
// output
cout << nCnt << "\n";
return 0;
}
'알고리즘 > BaekJoon' 카테고리의 다른 글
[c++] 1181번 : 단어 정렬 (0) | 2022.03.20 |
---|---|
[c++] 1085번 : 직사각형에서 탈출 (0) | 2022.03.15 |
[c++] 11720번 : 숫자의 합 (0) | 2022.03.12 |
[c++] 10869번 : 사칙연산 (0) | 2022.03.12 |
[c++] 10818번 : 최소, 최대 (0) | 2022.03.12 |