티스토리 뷰
https://www.acmicpc.net/problem/2606
백준 소스코드 [C++] 2606 바이러스
#include <iostream>
#include <algorithm>
#include <queue>
#include <string.h>
using namespace std;
int sum,c,cc;
pair<int,int> arr[5000];
bool check[5000],node[101];
queue <int> q;
void bfs() {
while (q.empty() != true) {
int pp = q.front();
q.pop();
for (int i = 1;i <= cc;i++) {
if (check[i]== true &&pp == arr[i].first) {
check[i] = false;
q.push(arr[i].second);
if (node[arr[i].second] == true) {
sum++;
node[arr[i].second] = false;
}
}
else if (check[i] == true && pp == arr[i].second) {
check[i] = false;
q.push(arr[i].first);
if (node[arr[i].first] == true) {
sum++;
node[arr[i].first] = false;
}
}
}
}
return;
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int x,y;
sum = 0;
cin >> c;
cin >> cc;
memset(check, true, sizeof(bool) * 5000);
memset(node, true, sizeof(bool) * 101);
for (int i = 1;i <= cc;i++) {
cin >> x >> y;
arr[i] = make_pair( x,y );
}
q.push(1);
bfs();
cout << sum << '\n';
return 0;
}
'백준' 카테고리의 다른 글
백준 소스코드 [C++] 1697 숨바꼭질 (0) | 2020.08.24 |
---|---|
백준 소스코드 [C++] 14502 연구소 (0) | 2020.08.24 |
백준 소스코드 [C++] 15092 Sheba's Amoebas (0) | 2020.08.23 |
백준 소스코드 [C++] 4677 Oil Deposits (0) | 2020.08.23 |
백준 소스코드 [C++] 11123 양 한마리 양 두마리 (0) | 2020.08.23 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- HIG
- WWDC17
- 최단경로문제
- mach-o
- State Restoration
- WWDC16
- 최대 매칭
- observeOn
- 컴퓨터 추상화
- IOS
- 부스트캠프 6기
- 벨만포드 시간복잡도
- 네트워크 유량
- WWDC21
- 벨만포드 알고리즘
- 강한 순환 참조
- 포드 풀커슨 알고리즘
- 에드몬드 카프 알고리즘
- CPU와 Memory
- CompositionalLayout
- 최단경로 문제
- WWDC19
- 코딩대회
- 최단경로 알고리즘
- MeTal
- 다익스트라 시간복잡도
- 네트워크 플로우
- Testable
- rxswift
- test coverage
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함