티스토리 뷰
반응형
백준 1926번 그림
https://www.acmicpc.net/problem/1926
정답 코드
#include<iostream>
#include<queue>
using namespace std;
int arr[501][501];
int visit[501][501];
int dx[4] = { 1,0,-1,0 };
int dy[4] = { 0,1,0,-1 };
int main() {
ios_base::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int n, m;
cin >> n >> m;
for (int x = 0; x < n; x++) {
for (int y = 0; y < m; y++) {
cin >> arr[x][y];
}
}
int num = 0, mx = 0;
queue<pair<int, int>>q;
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
if (visit[i][j] || arr[i][j] == 0)
continue;
num++;
visit[i][j] = 1;
q.push({ i,j });
int area = 0;
while (!q.empty()) {
area++;
pair<int, int>cur = q.front();
q.pop();
for (int x = 0; x < 4; x++) {
int mx = cur.first + dx[x];
int my = cur.second + dy[x];
if (mx < 0 || mx >= n || my < 0 || my >= m)
continue;
if (visit[mx][my] || arr[mx][my] != 1)
continue;
visit[mx][my] = 1;
q.push({ mx,my });
}
mx = max(mx, area);
}
}
}
cout << num << endl << mx;
}
문제 풀이
bfs를 이용해서 푸는 문제입니다. 제 블로그에서
bfs관련 문제는 많이 다루어서 따로 설명은 하지
않겠습니다.
반응형
'Algorithm > BOJ' 카테고리의 다른 글
백준 1929번 C++ (0) | 2023.08.03 |
---|---|
백준 1927번 C++ (0) | 2023.08.03 |
백준 1920번 C++ (0) | 2023.08.02 |
백준 1916번 C++ (0) | 2023.08.02 |
백준 1914번 C++ (0) | 2023.07.30 |
반응형
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- CSS
- 유클리드 호제법
- HTML5
- 백준 풀이
- 세그먼트 트리
- java
- html
- js
- 우선순위 큐
- 투 포인터
- DP
- BFS
- 알고리즘 공부
- 유니온 파인드
- 백준
- DFS
- 알고리즘
- 에라토스테네스의 체
- 자바
- 스택
- C++ Stack
- Do it!
- 스프링 부트 crud 게시판 구현
- 자바스크립트
- 자료구조
- c++ string
- 이분 매칭
- C++
- 반복문
- 카운팅 정렬
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함