백준 1240번 (노드사이의 거리, C++) [BAEKJOON]
백준 온라인 문제 1240번 문제에 대한 글입니다.
DFS 재귀 함수를 사용하여 해결하였습니다. (This is about question 1240 of Baekjun Online Problem.
Resolved using the DFS recursive function.)
백준 1240번 (노드사이의 거리, C++) [BAEKJOON] 더 읽기"
백준 온라인 문제 1240번 문제에 대한 글입니다.
DFS 재귀 함수를 사용하여 해결하였습니다. (This is about question 1240 of Baekjun Online Problem.
Resolved using the DFS recursive function.)
백준 1240번 (노드사이의 거리, C++) [BAEKJOON] 더 읽기"
백준 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.)
백준 21736번 (헌내기는 친구가 필요해, C++) [BAEKJOON] 더 읽기"
Programmers 92342번 ‘양궁대회’ 문제에 대한 글입니다. 재귀를 이용한 완전 탐색으로 해결하였습니다. (This article is about the issue of ‘Archery Competition’ in Programmers 92342. It was solved by a complete search using recursive. [2022 KAKAO BLIND RECRUITMENT]) [2022 KAKAO BLIND RECRUITMENT]
Programmers 92342 양궁대회 [2022 KAKAO BLIND RECRUITMENT] 더 읽기"
백준(BAEKJOON) 1992번 ‘쿼드트리’ 문제에 대한 글입니다. ‘분할 정복’ 알고리즘을 이용하여 해결하였습니다. (This is an article about the problem of ‘Quad Tree’ in 1992 by BAEKJOON. We solved it using ‘DivideAndConquer’ algorithm.)
백준 1992번 (쿼드트리, C++, DivideAndConquer) / 추가 반례 [BAEKJOON] 더 읽기"
백준(BAEKJOON) 10815번 ‘숫자 카드’ 문제에 대한 글입니다. ‘Binary Search’ 를 이용하여 해결하였습니다. (This is an article about the ‘number card’ problem in BAEKJOON 10815. I solved it using ‘Binary Search’.)
백준 10815번 (숫자 카드, C++, Binary Search) [BAEKJOON] 더 읽기"
백준(BAEKJOON) 1780번 “종이의 개수” 문제에 대한 글입니다. 재귀를 이용한 “분할정복” 알고리즘을 이용하여 해결하였습니다. (This is an article on the issue of “Number of Paper” in BAEKJOON 1780. It was solved using a “divisional conquest” algorithm using recursive.)
백준 1780번 (종이의 개수, C++, DivideAndConquer) [BAEKJOON] 더 읽기"
백준(BAEKJOON) 11403번 ‘경로 찾기’ 문제에 대한 글입니다. 재귀 방식을 이용하여 해결하였습니다. (This is an article about the ‘finding route’ problem in BAEKJOON 11403. It was resolved using a recursive method.)
백준 11403번 (경로 찾기, C++) [BAEKJOON] 더 읽기"
백준(BAEKJOON) 1074번 “Z” 문제에 대한 글입니다. ‘DivideAndConquer’ 알고리즘을 이용하여 해결하였습니다. (This is an article about the “Z” problem in BAEKJOON 1074. Solved using ‘DivideAndConquer’ algorithm.)
백준 1074번 (Z, C++, DivideAndConquer) [BAEKJOON] 더 읽기"
백준(BAEKJOON) 2630번 ‘색종이 만들기’ 문제에 대한 글입니다. ‘분할 정복’ 알고리즘을 사용하여 해결하였습니다. (This is an article about the ‘making colored paper’ problem in BAEKJOON 2630. Solved using the ‘division conquest’ algorithm.)
백준 2630번 (색종이 만들기, C++, DivideAndConquer) / 추가 반례 [BAEKJOON] 더 읽기"
백준(BAEKJOON) 1629번 곱셈 문제를 풀이한 내용의 글입니다. 모듈러 연산 / 지수법칙이 사용되고 재귀를 이용합니다. (This is an article that solves the multiplication problem of BAEKJOON 1629. Modular operations / exponential laws are used and recursion is used.)
백준 1629번 (곱셈, C++, 분할 정복) [BAEKJOON] 더 읽기"