일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 미래는_현재와_과거로
- 2023
- 세그먼트 트리
- 회고록
- 우선 순위 큐
- 분할 정복
- 다익스트라
- pytorch
- 플로이드 와샬
- DP
- 너비 우선 탐색
- 자바스크립트
- 크루스칼
- 가끔은_말로
- dropout
- NEXT
- c++
- 백트래킹
- Overfitting
- tensorflow
- dfs
- 알고리즘
- lazy propagation
- 이분 탐색
- object detection
- BFS
- 조합론
- 문자열
- 가끔은 말로
- back propagation
Archives
- Today
- Total
Doby's Lab
[알고리즘] 백준 10159번: 저울 (C++) 본문
https://www.acmicpc.net/problem/10159
개인적으로 (https://draw-code-boy.tistory.com/151) 이 문제와 똑같다고 느껴졌다.
저 문제를 풀지 않고, 이 문제를 시도했으면 어렵게 느껴졌을 거 같다.
플로이드 와샬로 나올 수 있는 문제 키워드 중 하나일 거 같다.
#include <iostream>
#include <cmath>
#define MAX 500 + 1
#define INF 987654321
using namespace std;
int graph[MAX][MAX];
int cache[MAX][MAX];
int n, m;
void floydWarshall() {
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= n; j++) {
cache[i][j] = graph[i][j];
}
}
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() {
cin >> n >> m;
// init
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= n; j++) {
graph[i][j] = INF;
}
}
for (int i = 0; i < m; i++) {
int a, b;
cin >> a >> b;
graph[a][b] = 1;
}
floydWarshall();
for (int i = 1; i <= n; i++) {
int cnt = 0;
// i로부터 갈 수 있는 노드가 몇 개인가
for (int j = 1; j <= n; j++) {
if (cache[i][j] == INF || cache[i][j] == 0) continue;
else cnt++;
}
// 도착 노드가 i가 되는 경우는 몇 개인가
for (int j = 1; j <= n; j++) {
if (cache[j][i] == INF || cache[i][j] == 0) continue;
else cnt++;
}
cout << (n - 1) - cnt << '\n';
}
return 0;
}
728x90
'PS > BOJ' 카테고리의 다른 글
[알고리즘] 백준 2660번: 회장뽑기 (C++) (0) | 2021.12.06 |
---|---|
[알고리즘] 백준 1613번: 역사 (C++) (0) | 2021.12.06 |
[알고리즘] 백준 1956번: 운동 (C++) (0) | 2021.12.06 |
[알고리즘] 백준 2458번: 키 순서 (C++) (0) | 2021.12.06 |
[알고리즘] 백준 11404번: 플로이드 (C++), 플로이드 와샬 (0) | 2021.12.06 |