반응형
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
- 물채우기
- OFFSET
- BOJ
- 소프티어
- 오퍼레터
- 파라메트릭
- boj #19237 #어른 상어
- 처우산정
- Kafka
- @P0
- msSQL
- 13908
- 백준
- compose
- upper_bound
- 매개변수탐색
- 성적평가
- dfs
- 퇴사통보
- 기술면접
- incr
- 백트래킹
- 처우협의
- 이분탐색
- Docker
- 연결요소
- softeer
- 경력
- 6987
- BFS
Archives
- Today
- Total
기술 블로그
1613번 역사 본문
728x90
반응형
처음에 단순히 BFS 문제인줄 알았다.
그러나, 제출을 해보니 시간 초과가 떴다.
BFS를 2번 실행해서 그런 것 같다.
결국 플로이드 와샬 알고리즘 풀어야 한다.
https://www.acmicpc.net/problem/1613
<시간 초과 코드 : 틀림>
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 | #include <cstdio> #include <cstring> #include <iostream> #include <algorithm> #include <string> #include <queue> #include <vector> using namespace std; vector<vector<int> > v; vector<int> result; int n = 0, k = 0, s = 0; bool BFS(int s, int e) { queue<int> q; bool visit[401] = { false, }; q.push(s); while (!q.empty()) { int qSize = q.size(); while (qSize--) { int here = q.front(); q.pop(); if (here == e) return true; if (visit[here]) continue; visit[here] = true; for (int next : v[here]) { if (!visit[next]) q.push(next); } } } return false; } int main(void) { int sv = 0, ev = 0; scanf("%d %d", &n, &k); v.resize(n + 1); while (k--) { scanf("%d %d", &sv, &ev); v[sv].push_back(ev); } scanf("%d", &s); while (s--) { scanf("%d %d", &sv, &ev); bool go = BFS(sv, ev); if (go) result.push_back(-1); else { go = BFS(ev, sv); if (go) result.push_back(1); else result.push_back(0); } } for (int i : result) { printf("%d\n", i); } return 0; } | cs |
<플로이드 와샬 알고리즘 코드 : 정답>
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 | #include <cstdio> #include <cstring> #include <iostream> #include <algorithm> #include <string> #include <queue> #include <vector> using namespace std; int incident[401][401] = { 0, }; int n = 0, k = 0, s = 0; vector<int> ans; void FloydWarshall() { for (int k = 1; k <= n; k++) { for (int i = 1; i <= n; i++) { for (int j = 1; j <= n; j++) { if (i == j || j == k || k == i) continue; if (incident[i][j] == 0) // 0인 경우만 따지면 된다. 나머지는 이미 사건이 발생한 후임. { if (incident[i][k] == -1 && incident[k][j] == -1) { // i가 k보다 먼저 일어나고, k가 j보다 먼저 일어났으면 // i가 j보다 먼저 일어났다. incident[i][j] = -1; } else if (incident[i][k] == 1 && incident[k][j] == 1) { // k가 i보다 먼저 일어나고, j가 k보다 먼저 일어났으면 // j가 i보다 먼저 일어났다. incident[i][j] = 1; } } } } } } int main(void) { int sv = 0, ev = 0; memset(incident, false, sizeof(incident)); scanf("%d %d", &n, &k); while (k--) { scanf("%d %d", &sv, &ev); incident[sv][ev] = -1; // sv가 ev보다 먼저 일어남. incident[ev][sv] = 1; // ev가 sv보다 먼저 일어남. } FloydWarshall(); scanf("%d", &s); while (s--) { scanf("%d %d", &sv, &ev); ans.push_back(incident[sv][ev]); } for (int i : ans) { printf("%d\n", i); } return 0; } | cs |
728x90
반응형
'알고리즘 문제 > BOJ' 카테고리의 다른 글
14890번 경사로 (0) | 2018.09.08 |
---|---|
1941번 소문난 칠공주 (0) | 2018.09.06 |
2146번 다리 만들기 (0) | 2018.09.04 |
14502번 연구소 (0) | 2018.09.02 |
9328번 열쇠 (0) | 2018.09.02 |