반응형
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
- 스프레드 시트
- 엑셀 가져오기
- 엑셀 내보내기
- 테크스트림
- 유니티 해상도 고정
- ilcode
- monocraft
- Mac 상단바 아이콘 이동
- 다른 시트값
- 다각형 중점
- 스프레드시트 사용법
- 라이더
- navmesh
- Mac
- 진수 변환기
- C#
- 스프레드시트
- navmeshagent
- unity 받기
- ilviewer
- rider 설치
- 백준
- Rider
- unity 구버전
- cmd키 변경
- 알고리즘
- 한달리뷰
- 유니티
- unity
- git
Archives
- Today
- Total
코스모스 공작소
백준 2468 안전영역 (bfs) [성공] 본문
반응형
https://www.acmicpc.net/problem/2468
이 문제는 다 풀어놓고 한가지 기준을 생각을 못해 꽤 시간이 걸렸던 문제
bfs dfs 둘다 풀이가 가능하다.
하지만 나는 bfs로 풀어보겠다.
영역을 그리고 다시 탐색하지 않는 과정으로 조금 더 단축시켜 진행하겠다.
#include <iostream>
#include<vector>
#include<queue>
#include<algorithm>
using namespace std;
vector<vector<int>> list;
vector<vector<int>> list_rain;
queue<pair<int,int>> q;
vector<int> count_list;
int dx[4] = { 1,0,-1,0 };
int dy[4] = { 0,1,0,-1 };
int min_ = 10;
int max_ = 0;
int n;
void init_list() {
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
list_rain[i][j] = 0;
}
}
}
void bfs(int depth) {
while (!q.empty())
{
pair<int, int> current = make_pair(q.front().first, q.front().second);
q.pop();
int y = current.second;
int x = current.first;
for (int w = 0; w < 4; w++) {
if (x + dx[w] < 0 || y + dy[w] < 0 || y + dy[w] >= n || x + dx[w] >= n) {
continue;
}
else {
if (list[y + dy[w]][x + dx[w]] > depth&& list_rain[y + dy[w]][x + dx[w]] == 0) {
q.push(make_pair(x + dx[w], y + dy[w]));
list_rain[y + dy[w]][x + dx[w]] = 1;
}
}
}
}
}
void solution() {
for (int depth = 0; depth <= max_; depth++) {
int count = 0;
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
if (list[i][j] > depth && list_rain[i][j] == 0) {
pair<int, int> x_y = make_pair(j, i);
q.push(x_y);
list_rain[i][j] = 1;
count++;
bfs(depth);
}
}
}
init_list();
count_list.push_back(count);
}
}
int max_count() {
int result=0;
for (int i = 0; i < count_list.size(); i++) {
if (result <= count_list[i]) {
result = count_list[i];
}
}
return result;
}
int main() {
cin >> n;
int temp;
vector<int> temp_int;
vector<int> temp_list_int;
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
cin >> temp;
temp_int.push_back(temp);
if (min_ >= temp) {
min_ = temp;
}
if (max_ <= temp) {
max_ = temp;
}
temp_list_int.push_back(0);
}
list.push_back(temp_int);
list_rain.push_back(temp_list_int);
temp_int.clear();
temp_list_int.clear();
}
solution();
cout << max_count() << endl;
return 0;
}
bfs 연습하기에는 정말 좋았던 문제
반응형
'프로그래밍 > 알고리즘' 카테고리의 다른 글
백준 1654 랜선 자르기 (성공) (0) | 2020.01.20 |
---|---|
힙(heap) 과 힙정렬, 그리고 우선순위 큐 (0) | 2019.12.18 |
백준 11047번 동전 0 [성공] (0) | 2019.12.08 |
백준 11399번 ATM [성공] (0) | 2019.12.06 |
백준 1145번 RGB거리 [성공] (0) | 2019.12.01 |
Comments