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
- 트리 순회
- 백준 파이썬
- go
- MongoDB Realm
- 12761번 돌다리
- 백준 사이트
- 12761 돌다리
- domain driven develop
- 파이썬
- flask
- http 완벽가이드
- 정렬
- 도메인 주도 개발 시작하기
- String 함수
- golang struct
- 고 배열
- 백준 12761
- 백준 12761번
- 백준
- http 개념
- 몽고디비 렘
- 자바 디자인 패턴
- 자바 디자인패턴
- 도메인 주도 개발
- 자바
- hadoop
- 우분투
- golang
- ddd
- 하둡
Archives
- Today
- Total
개발바닥
BOJ_18809 [ Gaaaaaaaaaarden ] 본문
반응형
문제
https://www.acmicpc.net/problem/18809
문제 해결 방법
순열 + bfs 로 문제를 해결할 수 있습니다.
완탐이 가능한 이유는 배양액을 뿌릴 수 있는 땅에 개수가 10개 미만으로 주어지기 때문에 10! 1초 이내에 해결할 수 있기 때문입니다.
해결 순서
1. 배양액을 뿌릴 수 있는 곳에 모두 뿌린다. (순열)
2. bfs를 통해서 퍼트린다.
3. 경우의 수 마다 꽃의 개수를 센다.
소스 코드
https://github.com/jokerKwu/BOJ_Algorithm/blob/master/Simulation/boj_18809.cpp
#include<iostream>
#include<string>
#include<vector>
#include<algorithm>
#include<queue>
using namespace std;
#define WATER 0 // 물
#define NO 1 // 배양액 뿌릴 수 없는 곳
#define YES 2 // 배양액 뿌릴 수 있는 곳
#define RED 8 // 빨간 배양액
#define GREEN 9 // 초록 배양액
#define F 10 // 꽃
#define MAX 52
int N, M, G, R;
int total;
int board[MAX][MAX];
typedef struct {
int x;
int y;
}Point;
typedef struct {
int x;
int y;
int type;
int time;
}Info;
vector<Point> pos;
Info tmp_board[MAX][MAX];
int m_xy[4][2] = { {0,1},{0,-1},{1,0},{-1,0} };
int bfs(vector<int> arr) {
int answer = 0;
for (int i = 0; i < N; i++) {
for (int j = 0; j < M; j++) {
tmp_board[i][j].x = j; tmp_board[i][j].y = i;
tmp_board[i][j].time = 0; tmp_board[i][j].type = board[i][j];
}
}
int r_cnt = 0, g_cnt = 0;
queue<Info>q;
for (int i = 0; i < pos.size(); i++) {
if (arr[i] == RED) {
r_cnt++;
tmp_board[pos[i].y][pos[i].x].type = RED;
q.push(tmp_board[pos[i].y][pos[i].x]);
}
else if (arr[i] == GREEN) {
g_cnt++;
tmp_board[pos[i].y][pos[i].x].type = GREEN;
q.push(tmp_board[pos[i].y][pos[i].x]);
}
}
if (g_cnt != G || r_cnt != R) return 0;
while (!q.empty()) {
Info cur_pos = q.front();
q.pop();
if (tmp_board[cur_pos.y][cur_pos.x].type != F){
for (int i = 0; i < 4; i++) {
Info next_pos = { cur_pos.x + m_xy[i][0],cur_pos.y + m_xy[i][1],cur_pos.type,cur_pos.time + 1 };
//이동 불가능한 지역이라면 컨티뉴
if (next_pos.x < 0 || next_pos.y < 0 || next_pos.x >= M || next_pos.y >= N || tmp_board[next_pos.y][next_pos.x].type == WATER) continue;
//이동하려는 곳이 이동 가능한 곳이라면
if (tmp_board[next_pos.y][next_pos.x].type == NO || tmp_board[next_pos.y][next_pos.x].type == YES) {
tmp_board[next_pos.y][next_pos.x].type = next_pos.type;
tmp_board[next_pos.y][next_pos.x].time = next_pos.time;
q.push(next_pos);
}
//이동하려는 곳에 시간이 같고 타입이 서로 다르다면 꽃을 만든다.
else if (tmp_board[next_pos.y][next_pos.x].time == next_pos.time && ((next_pos.type == RED && tmp_board[next_pos.y][next_pos.x].type == GREEN) || (next_pos.type == GREEN && tmp_board[next_pos.y][next_pos.x].type == RED))) {
tmp_board[next_pos.y][next_pos.x].type = F;
tmp_board[next_pos.y][next_pos.x].time = next_pos.time;
answer++;
}
}
}
}
return answer;
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> N >> M >> G >> R;
for (int i = 0; i < N; i++) {
for (int j = 0; j < M; j++) {
cin >> board[i][j];
if (board[i][j] == YES) {
pos.push_back({ j,i });
}
}
}
total = G + R;
int answer = 0;
vector<int> arr(10-total,0);
for (int i = 0; i < G; i++) {
arr.push_back(GREEN);
}
for (int j = 0; j < R; j++) {
arr.push_back(RED);
}
sort(arr.begin(), arr.end());
do {
answer = max(answer, bfs(arr));
} while (next_permutation(arr.begin(), arr.end()));
cout << answer << '\n';
return 0;
}
반응형
'[ Algorithm ] > [ BOJ ]' 카테고리의 다른 글
BOJ_2251 [ 물통 ] (0) | 2020.04.08 |
---|---|
BOJ_18808 [ 스티커 붙이기] (0) | 2020.04.08 |
BOJ_1790 [ 수 이어 쓰기 2 ] (0) | 2020.04.07 |
BOJ_17608 [ 막대기 ] (0) | 2020.03.17 |
BOJ_17609 [ 회문 ] (0) | 2020.03.17 |
Comments