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
- 보로노이다이어그램
- PS
- 충돌 알고리즘
- 알고리즘
- 리눅스
- Unity
- Doubly Connected Edge List
- 백준
- dp
- 문제풀이
- 다이나믹 프로그래밍
- 벡터
- 내적
- Graham Scan
- SOH
- GJK
- Expanding Polytope Algorithm
- 유니티
- C
- 분할축 이론
- 외적
- linux
- C++
- Vector
- c#
- 수학
- ubuntu
- uclidean algorithm
- AABB
- 우분투
Archives
- Today
- Total
마이 플밍 블로그
[C++] 백준 2234 - 성곽 본문
풀이
비트연산자를 이용해서 방 구역 나누기 > 각 방 넓이 구하기 > 방 합치기 순으로 진행해서 풀었다.
코드
#include <bits/stdc++.h>
using namespace std;
int board[51][51];
int room[51][51];
int roomArea[2505];
int roomNum = 1;
int dx[4] = {0,0,-1,1};
int dy[4] = {-1,1,0,0};
int answer = 10000000;
int h,w;
int maxArea = 0;
bool InMap(int x,int y){
if(0 <= x && x < w && 0<= y && y < h)
return true;
return false;
}
int RoomSet(int x,int y){
if(room[y][x] != 0)
return 0;
queue<pair<int,int>> q;
q.push(make_pair(x,y));
while(!q.empty()){
int xx = q.front().first;
int yy = q.front().second;
q.pop();
if(!InMap(xx, yy))
continue;
if(room[yy][xx] != 0)
continue;
room[yy][xx] = roomNum;
roomArea[roomNum]++;
int wall = board[yy][xx];
// 서쪽
if((wall & 1)==0){
q.push(make_pair(xx-1,yy));
}
// 북
if((wall & 2)==0){
q.push(make_pair(xx,yy-1));
}
// 동
if((wall & 4)==0){
q.push(make_pair(xx+1,yy));
}
// 남
if((wall & 8)==0){
q.push(make_pair(xx,yy+1));
}
}
roomNum++;
return roomArea[roomNum-1];
}
void SumRoom(int x,int y){
int nowRoom = room[y][x];
int nowArea = roomArea[nowRoom];
int wall = board[y][x];
// 서쪽뚫기
if((wall & 1)==1){
// 맵 안이고 같은 방아니면
if(InMap(x-1, y)){
int nextRoom = room[y][x-1];
int nextArea = roomArea[nextRoom];
if(nowRoom != nextRoom){
maxArea = max(maxArea, nowArea + nextArea);
}
}
}
// 북
if((wall & 2)==2){
if(InMap(x, y-1)){
int nextRoom = room[y-1][x];
int nextArea = roomArea[nextRoom];
if(nowRoom != nextRoom){
maxArea = max(maxArea, nowArea + nextArea);
}
}
}
// 동
if((wall & 4)==4){
if(InMap(x+1, y)){
int nextRoom = room[y][x+1];
int nextArea = roomArea[nextRoom];
if(nowRoom != nextRoom){
maxArea = max(maxArea, nowArea + nextArea);
}
}
}
// 남
if((wall & 8)==8){
if(InMap(x, y+1)){
int nextRoom = room[y+1][x];
int nextArea = roomArea[nextRoom];
if(nowRoom != nextRoom){
maxArea = max(maxArea, nowArea + nextArea);
}
}
}
}
int main()
{
int maxRoom = 0;
ios_base::sync_with_stdio(0); cin.tie(0);
cin >> w >> h;
for(int y = 0; y < h; y++){
for(int x = 0; x < w; x++){
cin >> board[y][x];
}
}
for(int y = 0; y < h; y++){
for(int x = 0; x < w; x++){
maxRoom = max(maxRoom,RoomSet(x,y));
}
}
for(int y = 0; y < h; y++){
for(int x = 0; x < w; x++){
SumRoom(x,y);
}
}
cout << roomNum-1 << endl;
cout << maxRoom << endl;
cout << maxArea;
return 0;
}
'문제풀이 > 백준' 카테고리의 다른 글
[C++] 백준 1504 - 특정한 최단 경로 (1) | 2023.10.09 |
---|---|
[C++] 백준 11779 - 최소비용 구하기 2 (1) | 2023.10.08 |
[C++] 백준 14442 - 벽 부수고 이동하기 2 (1) | 2023.10.07 |
[C++] 백준 1600 - 말이 되고픈 원숭이 (1) | 2023.10.06 |
[C++] 백준 2146 - 다리 만들기 (0) | 2023.10.01 |