티스토리 뷰
https://www.acmicpc.net/problem/2667
백준 소스코드 [C++] 2667 단지번호붙이기
#include <iostream>
#include <utility>
#include <vector>
#include <algorithm>
#include <queue>
using namespace std;
int arr[26][26];
bool check[26][26] = { false };
pair<int, int>direction[4] = { {-1,0},{1,0},{0,1} ,{0,-1} };
queue<pair<int, int> > q;
int bfs() {
int num = 1;
while (q.empty() != true) {
pair<int, int> p = q.front();
q.pop();
for (int a = 0;a < 4;a++)
if (arr[p.first + direction[a].first][p.second + direction[a].second] == 1 &&
check[p.first + direction[a].first][p.second + direction[a].second] == false)
{
q.push({ p.first + direction[a].first, p.second + direction[a].second });
check[p.first + direction[a].first][p.second + direction[a].second] = true;
num++;
}
}
return num;
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int n,m=0;
string s;
cin >> n;
vector<int> v;
for (int i = 1;i <= n;i++) {
cin >> s;
for (int j = 1;j <= n;j++)
arr[i][j] = s[j-1]-'0';
}
for (int i = 1;i <= n;i++)for (int j = 1;j <= n;j++) {
if (check[i][j] == false && arr[i][j]==1) {
q.push({ i,j });
check[i][j] = true;
v.push_back(bfs());
m++;
}
}
sort(v.begin(), v.end());
cout << m << '\n';
for (int i = 0;i < v.size();i++) cout << v[i] << '\n';
return 0;
}
'백준' 카테고리의 다른 글
백준 소스코드 [C++] 7576 토마토 (0) | 2020.08.17 |
---|---|
백준 소스코드 [C++] 7569 토마토 (0) | 2020.08.17 |
백준 소스코드 [C++] 2178 미로 탐색 (0) | 2020.08.17 |
백준 소스코드 [C++] 1992 쿼드트리 (0) | 2020.08.17 |
백준 소스코드 [C++] 1991 트리 순회 (0) | 2020.08.17 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- WWDC21
- WWDC16
- CompositionalLayout
- CPU와 Memory
- 네트워크 유량
- 다익스트라 시간복잡도
- WWDC17
- mach-o
- 컴퓨터 추상화
- 벨만포드 시간복잡도
- rxswift
- 포드 풀커슨 알고리즘
- Testable
- WWDC19
- 벨만포드 알고리즘
- 부스트캠프 6기
- 코딩대회
- IOS
- 최단경로 문제
- observeOn
- 최단경로 알고리즘
- 강한 순환 참조
- State Restoration
- 네트워크 플로우
- HIG
- 에드몬드 카프 알고리즘
- 최대 매칭
- test coverage
- 최단경로문제
- MeTal
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함