일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- pytorch
- 미래는_현재와_과거로
- 세그먼트 트리
- 우선 순위 큐
- 가끔은_말로
- back propagation
- DP
- 크루스칼
- 회고록
- 조합론
- NEXT
- dropout
- object detection
- 다익스트라
- 너비 우선 탐색
- 알고리즘
- 가끔은 말로
- tensorflow
- 자바스크립트
- c++
- BFS
- Overfitting
- lazy propagation
- 분할 정복
- 문자열
- dfs
- 플로이드 와샬
- 2023
- 이분 탐색
- 백트래킹
Archives
- Today
- Total
Doby's Lab
[알고리즘] 백준 1613번: 역사 (C++) 본문
https://www.acmicpc.net/problem/1613
또 똑같은 키워드다.
(https://draw-code-boy.tistory.com/151)
(https://draw-code-boy.tistory.com/153)
다만, 시간 초과가 나와서
ios_base::sync_with_stdio(false);
cin.tie(NULL);
를 해주고,
값을 복사해주는 cache의 역할이 사실상 의미가 없기 때문에
graph에 입력받은 값을 복사하지 않고, 즉각적으로 cache에 입력을 받고, 플로이드 와샬을 돌렸다.
[키워드]
플로이드 와샬로 각 노드 간의 전후 관계(?), 관련 있는 노드가 몇 개인가 등 여러 문제를 풀 수 있는 것을 알아냈다.
[AC 코드]
#include <iostream>
#include <cmath>
#define MAX 500 + 1
#define INF 987654321
using namespace std;
int cache[MAX][MAX];
int n, m;
void floydWarshall() {
for (int k = 1; k <= n; k++) {
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= n; j++) {
if (cache[i][k] != INF && cache[k][j] != INF) {
cache[i][j] = min(cache[i][j], cache[i][k] + cache[k][j]);
}
}
}
}
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= n; j++) {
if (i == j) cache[i][j] = 0;
}
}
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cin >> n >> m;
// init
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= n; j++) {
cache[i][j] = INF;
}
}
for (int i = 0; i < m; i++) {
int a, b;
cin >> a >> b;
cache[a][b] = 1;
}
floydWarshall();
int s;
cin >> s;
for (int i = 0; i < s; i++) {
int a, b;
cin >> a >> b;
if (cache[a][b] != 0 && cache[a][b] != INF) {
cout << -1 << '\n';
}
else if (cache[b][a] != 0 && cache[b][a] != INF) {
cout << 1 << '\n';
}
else {
cout << 0 << '\n';
}
}
return 0;
}
728x90
'PS > BOJ' 카테고리의 다른 글
[알고리즘] 백준 14938번: 서강그라운드 (C++) (0) | 2021.12.06 |
---|---|
[알고리즘] 백준 2660번: 회장뽑기 (C++) (0) | 2021.12.06 |
[알고리즘] 백준 10159번: 저울 (C++) (0) | 2021.12.06 |
[알고리즘] 백준 1956번: 운동 (C++) (0) | 2021.12.06 |
[알고리즘] 백준 2458번: 키 순서 (C++) (0) | 2021.12.06 |