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
- 10026번
- 이펙티브코틀린
- 열혈 TCP/IP 소켓 프로그래밍
- 윤성우 저자
- 제프리리처
- Four Squares
- Operating System
- n타일링2
- 우아한레디스
- 토마토
- Window-Via-c/c++
- FIFO paging
- OS
- inflearn
- BOJ
- 에러핸들링
- redis
- Spring
- C#
- 2475번
- C++
- 운영체제
- 우아한 테크 세미나
- 스프링 핵심 원리
- HTTP
- 스프링 입문
- 열혈 tcp/ip 프로그래밍
- Operating System.
- TCP/IP
- 김영한
Archives
- Today
- Total
나의 브을로오그으
[c++] 2606번 : 바이러스 본문
https://www.acmicpc.net/problem/2606
#include <iostream>
#include <stack>
using namespace std;
#define MAX_COMPUTER 101
int CountOfCompWithVirus(bool network[][MAX_COMPUTER], int computers);
int main()
{
ios::sync_with_stdio(false);
cin.tie(NULL);
bool network[MAX_COMPUTER][MAX_COMPUTER] = { false, };
int computers, networks, from, to, count;
cin >> computers >> networks;
for (int i = 1; i <= networks; ++i)
{
cin >> from >> to;
network[from][to] = true;
network[to][from] = true;
}
count = CountOfCompWithVirus(network, computers);
cout << count << '\n';
return 0;
}
int CountOfCompWithVirus(bool network[][MAX_COMPUTER], int computers) {
stack<int> st;
bool compWithVirus[MAX_COMPUTER] = { false, };
int count = 0, start= 1;
st.push(start);
compWithVirus[start] = true;
while (st.empty() == false)
{
int from = st.top();
st.pop();
for (int to = start; to <= computers; ++to)
{
if (compWithVirus[to] == false && network[from][to] == true)
{
st.push(from);
st.push(to);
compWithVirus[to] = true;
++count;
break;
}
}
}
return count;
}
'알고리즘 > BaekJoon' 카테고리의 다른 글
[c++] 2667번 : 단지번호붙이기 (0) | 2022.06.28 |
---|---|
[c++] 2630번 색종이 만들기 (0) | 2022.06.28 |
[c++] 2579번 : 계단 오르기 (0) | 2022.06.27 |
[c++] 2178번 : 미로 탐색 (0) | 2022.06.23 |
[c++] 1992번 : 쿼드트리 (0) | 2022.06.23 |