목록2025/01/29 (2)
넘치게 채우기
https://www.acmicpc.net/problem/11403BOJ - 경로 찾기문제 유형: 플로이드-워셜, 그래프, 최단 거리문제 난이도: Silver I시간 제한: 1초메모리 제한: 256MB 문제가중치 없는 방향 그래프 G가 주어졌을 때, 모든 정점 (i, j)에 대해서, i에서 j로 가는 길이가 양수인 경로가 있는지 없는지 구하는 프로그램을 작성하시오. 입력첫째 줄에 정점의 개수 N (1 ≤ N ≤ 100)이 주어진다. 둘째 줄부터 N개 줄에는 그래프의 인접 행렬이 주어진다. i번째 줄의 j번째 숫자가 1인 경우에는 i에서 j로 가는 간선이 존재한다는 뜻이고, 0인 경우는 없다는 뜻이다. i번째 줄의 i번째 숫자는 항상 0이다. 출력총 N개의 줄에 걸쳐서 문제의 정답을 인접행렬 형식으로 출력..
https://leetcode.com/problems/redundant-connection/description/leetcode - Redundant Connection문제 유형: 유니온-파인드, 분리 집합문제 난이도: Medium 문제In this problem, a tree is an undirected graph that is connected and has no cycles.You are given a graph that started as a tree with n nodes labeled from 1 to n, with one additional edge added. The added edge has two different vertices chosen from 1 to n, and was no..