백준 1926 그림
#include<bits/stdc++.h>
using namespace std;
int n, m;
int arr[501][501];
int vis[501][501];
int mx, cnt;
int dx[4] = { -1,0,1,0 };
int dy[4] = { 0,-1,0,1 };
int bfs(int i,int j,int area) {
queue<pair<int, int>> q;
q.push({ i,j });
vis[i][j] = 1;
area = 1;
while (!q.empty()) {
pair<int, int> nxt = q.front();
q.pop();
for (int i = 0; i < 4; i++) {
int nx = nxt.first + dx[i];
int ny = nxt.second + dy[i];
if (!vis[nx][ny] && arr[nx][ny]==1) {
area++;
q.push({ nx,ny });
vis[nx][ny] = 1;
}
}
}
return cnt;
}
int main() {
ios::sync_with_stdio(0); cin.tie(0);
cin >> n >> m;
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
cin >> arr[i][j];
}
}
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
if (arr[i][j]==1 && !vis[i][j]) {
cnt++;
mx = max(mx, bfs(i, j,0));
}
}
}
cout << cnt << '\n'<< mx << '\n';
}
Author And Source
이 문제에 관하여(백준 1926 그림), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@supway/백준-1926저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)