백준 1967번 (트리의 지름, C++) [BAEKJOON]
백준 1967번 ‘트리의 지름’ 문제에 대한 글입니다. DFS 탐색 알고리즘을 이용하여 해결하였습니다. (This article is about the problem of Baekjoon Number 1967 ‘Diameter of the Tree’. It was solved using the DFS search algorithm.)
백준 1967번 ‘트리의 지름’ 문제에 대한 글입니다. DFS 탐색 알고리즘을 이용하여 해결하였습니다. (This article is about the problem of Baekjoon Number 1967 ‘Diameter of the Tree’. It was solved using the DFS search algorithm.)
백준 1167번 ‘트리의 지름’ 문제에 대한 글입니다. DFS를 이용하여 문제를 해결하였습니다. (This article is about Baekjoon Number 1167 ‘Diameter of the Tree’. I solved the problem using ‘DFS’)
백준 16197번 ‘두 동전’ 문제에 대한 글입니다. BFS 탐색을 이용하여 해결하였습니다. (This article is about BaekJoon Number 16197 “two coins” problem.
It was solved using BFS.)
백준 2251번 ‘물통’ 문제에 대한 블로그 글입니다. (This is a blog post about the problem of ‘water bottle’ in Baekjoon Number 2251.)
백준 21736번 ‘헌내기는 친구가 필요해’ 문제에 대한 글입니다. 재귀를 이용한 ‘DFS Search’을 이용하여 해결하였습니다. (Baekjoon Number 21736 This is an article about the problem of “The old man needs a friend.” It was solved by using ‘DFS Search’ using recursive.)
백준(BAEKJOON) 9205번 ‘맥주 마시면서 걸어가기’ 문제에 대한 글입니다. DFS 탐색을 이용하여 해결하였습니다. (This is an article on the issue of “Walking while Drinking Beer” in BAEKJOON No. 9205. Resolved using DFS Search.)
백준(BAEKJOON) 11724번 ‘연결 요소의 개수’ 문제에 대한 글입니다. ‘DFS’를 이용하여 해결하였습니다. (This is an article about the problem of ‘number of connecting elements’ in BAEKJOON 11724. I solved it using ‘DFS’.)
백준(BAEKJOON) 15683번 감시 문제를 풀이한 내용과 추가적인 반례를 담은 글입니다. (This article contains the contents of Baekjun (BAEKJOON) 15683 surveillance problem and additional counter examples.)
백준 6987번 문제를 풀이한 글입니다.
DFS를 이용하여 풀이하였습니다.
좋은수열 https://www.acmicpc.net/problem/2661 시간 제한 메모리 제한 제출 정답 맞힌 사람 정답 비율 1 초 128 MB 11169 5455 4188 50.144% 문제 숫자 1, 2, 3으로만 이루어지는 수열이 있다. 임의의 길이의 인접한 두 개의 부분 수열이 동일한 것이 있으면, 그 수열을 나쁜 수열이라고 부른다. 그렇지 않은 수열은 좋은 수열이다. 다음은 나쁜 수열의 예이다. 다음은 좋은 수열의 …