Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 알고리즘
- 람다사용정렬
- 데이터애셋
- 언리얼가비지컬렉터
- 자료구조
- C++최적화
- map
- UELOG
- 람다
- UE_LOG
- enumasByue
- unorder_map
- moreeffectiveC++
- 언리얼엔진구조체
- UML관련
- stl
- 정렬알고리즘
- 델리게이트
- 정렬
- 프로그래머스
- 스마트포인터
- UE4 커스텀로그
- 강참조
- 약참조
- dataasset
- C++
- BFS
- 선택정렬
- 크리티컬섹션
- 애셋로드
Archives
- Today
- Total
기억을 위한 기록들
[백준 1303: 전쟁 - 전투 ] - C++ 본문
#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
using namespace std;
string map[101][101];
int visited[101][101];
int dir[4][2] = {
{-1,0}
,{0,1}
,{1,0}
,{0,-1}
};
int whiteCnt;
int blueCnt;
int n, m;
int cnt;
void D(int _x, int _y, string curColor)
{
for (int i = 0; i < 4; i++)
{
int nextX = _x + dir[i][0];
int nextY = _y + dir[i][1];
if (nextX < 0 || nextY < 0 || n <= nextX || m <= nextY)
continue;
if (map[nextX][nextY] == curColor && visited[nextX][nextY] == 0)
{
visited[nextX][nextY] = 1;
cnt++;
D(nextX, nextY,curColor);
}
}
}
int main() {
string input;
cin >> m >> n;
for (int i = 0; i < n; i++)
{
cin >> input;
for (int j = 0; j < m; j++)
{
map[i][j] = input[j];
}
}
for (int i = 0; i < n; i++)
{
for (int j = 0; j < m; j++)
{
if (!visited[i][j])
{
cnt = 1;
visited[i][j] = 1;
if (map[i][j] == "B")
{
D(i, j, "B");
blueCnt += cnt * cnt;
}
else if (map[i][j] == "W")
{
D(i, j, "W");
whiteCnt += cnt * cnt;
}
}
}
}
cout << whiteCnt << " " << blueCnt << endl;
return 0;
}
'Coding Test - cpp > DFS' 카테고리의 다른 글
[백준 9466: 텀 프로젝트] - C++ (0) | 2021.02.19 |
---|---|
[백준 2210: 숫자판 점프] - C++ (0) | 2021.02.18 |
[프로그래머스 lv2] 단어 변환- c++ (0) | 2021.02.16 |
[백준 1937: 욕심쟁이 판다] - C++ (0) | 2021.02.15 |
[백준 2573: 빙산] - C++ (0) | 2021.02.15 |