반응형
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 | 31 |
Tags
- compose
- incr
- 성적평가
- 처우산정
- Docker
- 퇴사통보
- 연결요소
- 13908
- 백준
- dfs
- msSQL
- 처우협의
- upper_bound
- 물채우기
- OFFSET
- @P0
- softeer
- 경력
- boj #19237 #어른 상어
- 기술면접
- 파라메트릭
- Kafka
- BFS
- 소프티어
- 백트래킹
- BOJ
- 6987
- 오퍼레터
- 이분탐색
- 매개변수탐색
Archives
- Today
- Total
기술 블로그
1389번 케빈 베이컨의 6단계 법칙 본문
728x90
반응형
기본적인 BFS 문제이다.
문제 유형에 '플로이드 와샬 알고리즘'이 있어서, 쫄았다.(?)
(배웠긴 했지만, 까먹었기 때문이다. 꼭 다음 주 내로 각종 알고리즘들을 복습해야겠다.)
https://www.acmicpc.net/problem/1389
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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 | #include <iostream> #include <queue> #include <cstdio> #include <vector> #include <cstring> #include <string> #include <math.h> #include <algorithm> using namespace std; int N = 0, M = 0; int s = 0, e = 0; vector<vector<int> > v; int BFS(int start) { int ret = 0; for (int index = 1; index <= N; index++) { bool stop = false; if (start != index) { queue<int> q; bool visit[102] = { false, }; q.push(start); while (!q.empty()) { int qSize = q.size(); while (qSize--) { int here = q.front(); q.pop(); if (here == index) { stop = true; } if (visit[here]) continue; visit[here] = true; for (int next : v[here]) { if (!visit[next]) { q.push(next); } } } if (stop) break; ++ret; } } } return ret; } int main(void) { int ans = 987654321; scanf("%d %d", &N, &M); v.resize(N + 1); while (M--) { scanf("%d %d", &s, &e); v[s].push_back(e); v[e].push_back(s); } int min_index = 0; for (int i = 1; i <= N; i++) { int var = BFS(i); if (ans > var) { ans = var; min_index = i; } } printf("%d\n", min_index); return 0; } | cs |
728x90
반응형
'알고리즘 문제 > BOJ' 카테고리의 다른 글
9328번 열쇠 (0) | 2018.09.02 |
---|---|
14500번 테트로미노 (0) | 2018.08.30 |
6603번 로또 (0) | 2018.08.30 |
2644번 촌수계산 (0) | 2018.08.29 |
10815번 숫자 카드 (0) | 2018.08.28 |