반응형
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
- @P0
- boj #19237 #어른 상어
- BOJ
- 오퍼레터
- dfs
- 이분탐색
- compose
- 경력
- 6987
- 퇴사통보
- 기술면접
- 소프티어
- 13908
- 처우산정
- msSQL
- softeer
- 백트래킹
- 백준
- 물채우기
- Docker
- OFFSET
- Kafka
- incr
- 성적평가
- BFS
- upper_bound
- 처우협의
- 파라메트릭
- 매개변수탐색
- 연결요소
Archives
- Today
- Total
기술 블로그
11404번 플로이드 본문
728x90
반응형
정식 알고리즘 명칭 : 플로이드 와샬 알고리즘
제출하였는데 계속 100%에서 틀렸다고 나오길래
생각해보니, 조건을 생각 못 했었다.
60번 째 줄 코드
비용은 100,000하고 같거나 작은 수이다.
즉, 시작 도시에서 끝 도시로 갈 때에 비용이 100,000 초과가 된다면,
갈 수 없는 경우이므로 0을 출력해야한다.
https://www.acmicpc.net/problem/11404
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 | #include <stdio.h> #include <stdlib.h> #include <malloc.h> #include <string.h> #define INF 987654321 int cityCount = 0, busCount = 0; int from = 0, to = 0, weight = 0; int MIN(int a, int b) { if (a <= b) return a; else return b; } int map[101][101] = { 0, }; int main() { scanf("%d", &cityCount); scanf("%d", &busCount); for (int i = 1; i <= cityCount; i++) { for (int j = 1; j <= cityCount; j++) { map[i][j] = (i == j) ? 0 : INF; } } for (int i = 1; i <= busCount; i++) { scanf("%d %d %d", &from, &to, &weight); map[from][to] = MIN(map[from][to], weight); } for (int k = 1; k <= cityCount; k++) { for (int i = 1; i <= cityCount; i++) { for (int j = 1; j <= cityCount; j++) { if (i == j) continue; if (map[i][j] > map[i][k] + map[k][j]) { map[i][j] = map[i][k] + map[k][j]; } } } } for (int i = 1; i <= cityCount; i++) { for (int j = 1; j <= cityCount; j++) { if (map[i][j] > 100000) map[i][j] = 0; printf("%d ", map[i][j]); } printf("\n"); } return 0; } | cs |
728x90
반응형
'알고리즘 문제 > BOJ' 카테고리의 다른 글
2563번 색종이 (0) | 2018.09.24 |
---|---|
1707번 이분 그래프 (0) | 2018.09.23 |
10814번 나이순 정렬 (0) | 2018.09.19 |
15489번 파스칼 삼각형 (0) | 2018.09.19 |
4963번 섬의 개수 (0) | 2018.09.19 |