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 |
Tags
- HTTP
- 열혈 TCP/IP 소켓 프로그래밍
- 에러핸들링
- 윤성우 저자
- 스프링 입문
- C++
- Operating System.
- BOJ
- 10026번
- C#
- 이펙티브코틀린
- 운영체제
- n타일링2
- Four Squares
- Window-Via-c/c++
- TCP/IP
- FIFO paging
- OS
- 우아한레디스
- 김영한
- 우아한 테크 세미나
- inflearn
- Spring
- Operating System
- 열혈 tcp/ip 프로그래밍
- 2475번
- 토마토
- 스프링 핵심 원리
- redis
- 제프리리처
Archives
- Today
- Total
나의 브을로오그으
[c++] 11403번 : 경로 찾기 본문
https://www.acmicpc.net/problem/11403
#include <iostream>
using namespace std;
void findRoute(int nodeCnt, bool edge[][101])
{
for (int mid = 1; mid <= nodeCnt; ++mid)
{
for (int from = 1; from <= nodeCnt; ++from)
{
for (int to = 1; to <= nodeCnt; ++to)
{
if (edge[from][to] == false && edge[from][mid] == true && edge[mid][to] == true)
{
edge[from][to] = true;
}
}
}
}
return;
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(NULL);
int nodeCnt = 0;
bool edge[101][101] = { 0, };
cin >> nodeCnt;
for (int i = 1; i <= nodeCnt; ++i)
{
for (int j = 1; j <= nodeCnt; ++j)
{
cin >> edge[i][j];
}
}
findRoute(nodeCnt, edge);
for (int i = 1; i <= nodeCnt; ++i)
{
for (int j = 1; j <= nodeCnt; ++j)
{
cout << edge[i][j] << ' ';
}
cout << '\n';
}
return 0;
}
'알고리즘 > BaekJoon' 카테고리의 다른 글
[c++] 11723번 : 집합 (0) | 2022.09.19 |
---|---|
[c++] 11659번 : 구간 합 구하기 4 (0) | 2022.09.19 |
[c++] 11399번 : ATM (0) | 2022.09.19 |
[c++] 11286번 : 절댓값 힙 (0) | 2022.09.14 |
[c++] 11279번 : 최대 힙 (0) | 2022.09.08 |