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
- 백트래킹
- 구현
- 우선순위 큐
- 백준
- 그래프
- BFS
- Team Fortress 2
- 정렬
- c++
- 유니티
- 재귀
- 자료구조
- 누적 합
- 시뮬레이션
- 문자열
- Unreal Engine 5
- 트리
- ue5
- 브루트포스
- 다이나믹 프로그래밍
- 알고리즘
- XR Interaction Toolkit
- VR
- 수학
- 투 포인터
- 유니온 파인드
- 그리디 알고리즘
- 스택
- 다익스트라
Archives
- Today
- Total
1일1알
백준 21938번 영상처리 C++ 본문
https://www.acmicpc.net/problem/21938
21938번: 영상처리
화면의 세로 $N$, 가로 $M$ 값이 공백으로 구분되어 주어진다. 두 번째 줄부터 $N + 1$줄까지 $i$번째 가로를 구성하고 있는 픽셀의 $R_{i,j}$, $G_{i,j}$, $B_{i,j}$의 값이 공백으로 구분되어 총 $M$개 주어진
www.acmicpc.net
bfs로 풀수있는 간단한 문제인데, 입력 방식이 조금 특이했다.
#include <iostream>
#include <string>
#include <vector>
#include <math.h>
#include <algorithm>
#include <utility>
#include <stack>
#include <queue>
#include <math.h>
#include <set>
#include <map>
#include <list>
#include <unordered_map>
#include <unordered_set>
#include <iomanip>
#include <limits.h>
using namespace std;
using int64 = long long;
int dRow[4] = { -1,0,1,0 };
int dCol[4] = { 0,1,0,-1 };
int n, m, t;
vector<vector<int>> r;
vector<vector<int>> g;
vector<vector<int>> b;
vector<vector<int>> avg;
vector<vector<bool>> found;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n >> m;
r = vector<vector<int>>(n, vector<int>(m));
g = vector<vector<int>>(n, vector<int>(m));
b = vector<vector<int>>(n, vector<int>(m));
avg = vector<vector<int>>(n, vector<int>(m));
found = vector<vector<bool>>(n, vector<bool>(m, false));
for (int i = 0; i < n; i++) {
for (int j = 0; j < m * 3; j++) {
if (j % 3 == 0) cin >> r[i][j / 3];
else if (j % 3 == 1) cin >> g[i][j / 3];
else cin >> b[i][j / 3];
}
}
cin >> t;
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
int sum = r[i][j] + g[i][j] + b[i][j];
if (sum / 3 >= t) avg[i][j] = 255;
else avg[i][j] = 0;
}
}
int ans = 0;
queue<pair<int, int>> q;
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
if (avg[i][j] == 0) continue;
if (found[i][j]) continue;
q.push({ i,j });
found[i][j] = true;
ans++;
while (!q.empty()) {
auto curr = q.front();
q.pop();
for (int k = 0; k < 4; k++) {
int nextRow = curr.first + dRow[k];
int nextCol = curr.second + dCol[k];
if (nextRow < 0 || nextRow >= n) continue;
if (nextCol < 0 || nextCol >= m) continue;
if (avg[nextRow][nextCol] == 0) continue;
if (found[nextRow][nextCol]) continue;
found[nextRow][nextCol] = true;
q.push({ nextRow,nextCol });
}
}
}
}
cout << ans;
}
'알고리즘' 카테고리의 다른 글
백준 19942번 다이어트 C++ (0) | 2023.05.27 |
---|---|
백준 14675번 단절점과 단절선 C++ (0) | 2023.05.26 |
백준 15947번 아기 석환 뚜루루 뚜루 C++ (0) | 2023.05.22 |
백준 16938번 캠프 준비 C++ (0) | 2023.05.21 |
백준 5002번 도어맨 C++ (0) | 2023.05.20 |