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
- 정렬
- DFS
- Unreal Engine 5
- VR
- 누적 합
- 자료구조
- Team Fortress 2
- ue5
- 유니티
- XR Interaction Toolkit
- c++
- 수학
- 알고리즘
- 트리
- 유니온 파인드
- 그리디 알고리즘
- 우선순위 큐
- 투 포인터
- 다익스트라
- 다이나믹 프로그래밍
- 백트래킹
- 시뮬레이션
- BFS
- 그래프
- 문자열
- 스택
- 구현
- 브루트포스
- 재귀
- 백준
Archives
- Today
- Total
1일1알
백준 1926번 그림 C++ 본문
단순한 그래프 탐색 문제이다.
가로 세로로 이어진 그림의 개수와 그림 중에서 넓이가 가장 큰 값을 구하면 된다.
bfs와 dfs 모두 사용할 수 있다. 나는 bfs방식을 이용해서 해결하였다.
#include <iostream>
#include <string>
#include <vector>
#include <math.h>
#include <algorithm>
#include <utility>
#include <stack>
#include <queue>
#include <math.h>
#include <set>
#include <unordered_set>
using namespace std;
typedef long long ll;
void Input(vector<vector<int>>& v, int n, int m) {
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
cin >> v[i][j];
}
}
}
pair<int, int> bfs(vector<vector<int>>& v, int n, int m) {
int cnt = 0;
int size = 0;
queue<pair<int, int>> q;
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
if (v[i][j] == 1) {
int tmp_size = 1;
cnt++;
v[i][j] = 0;
q.push({ i,j });
while (!q.empty()) {
auto a = q.front();
q.pop();
if (a.first - 1 >= 0 && v[a.first - 1][a.second] == 1) {
q.push({ a.first - 1,a.second });
v[a.first - 1][a.second] = 0;
tmp_size++;
}
if (a.first + 1 < n && v[a.first + 1][a.second] == 1) {
q.push({ a.first + 1,a.second });
v[a.first + 1][a.second] = 0;
tmp_size++;
}
if (a.second - 1 >= 0 && v[a.first][a.second - 1] == 1) {
q.push({ a.first,a.second - 1 });
v[a.first][a.second - 1] = 0;
tmp_size++;
}
if (a.second + 1 < m && v[a.first][a.second + 1] == 1) {
q.push({ a.first,a.second + 1 });
v[a.first][a.second + 1] = 0;
tmp_size++;
}
}
size = max(size, tmp_size);
}
}
}
return { cnt,size };
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int n, m;
cin >> n >> m;
vector<vector<int>> v(n, vector<int>(m));
Input(v, n, m);
pair<int, int> ans = bfs(v, n, m);
cout << ans.first << "\n" << ans.second;
};
'알고리즘' 카테고리의 다른 글
백준 1759번 암호 만들기 C++ (0) | 2021.11.04 |
---|---|
백준 12852번 1로 만들기 2 C++ (0) | 2021.11.03 |
백준 10164번 격자상의 경로 C++ (0) | 2021.11.01 |
백준 1309번 동물원 C++ (1) | 2021.10.31 |
백준 2294번 동전 2 C++ (0) | 2021.10.30 |