반응형 Problem Solving232 [DFS, BFS] 백준 1043번: 거짓말 / 골드 4 https://www.acmicpc.net/problem/1043 1043번: 거짓말 지민이는 파티에 가서 이야기 하는 것을 좋아한다. 파티에 갈 때마다, 지민이는 지민이가 가장 좋아하는 이야기를 한다. 지민이는 그 이야기를 말할 때, 있는 그대로 진실로 말하거나 엄청나게 www.acmicpc.net import collections n, m = map(int, input().split()) graph = collections.defaultdict(list) p = list(map(int, input().split())) # second line if p[0] == 0: print(m) quit() for i in range(1, p[0]): graph[p[i]].append(p[i+1]) graph[p.. 2021. 7. 26. [다이나믹 프로그래밍] 백준 9251번: LCS / 골드 5 https://www.acmicpc.net/problem/9251 9251번: LCS LCS(Longest Common Subsequence, 최장 공통 부분 수열)문제는 두 수열이 주어졌을 때, 모두의 부분 수열이 되는 수열 중 가장 긴 것을 찾는 문제이다. 예를 들어, ACAYKP와 CAPCAK의 LCS는 ACAK가 된다. www.acmicpc.net str1 = input() str2 = input() dp = [[0]*(len(str1)+1) for x in range(len(str2)+1)] for i in range(1, len(str2)+1): for j in range(1, len(str1)+1): if str1[j-1] == str2[i-1]: dp[i][j] = dp[i-1][j-1]+.. 2021. 7. 23. [ 최단 경로 ] 백준 14938번: 서강그라운드 / 골드 4 https://www.acmicpc.net/problem/14938 14938번: 서강그라운드 예은이는 요즘 가장 인기가 있는 게임 서강그라운드를 즐기고 있다. 서강그라운드는 여러 지역중 하나의 지역에 낙하산을 타고 낙하하여, 그 지역에 떨어져 있는 아이템들을 이용해 서바이벌을 www.acmicpc.net sol 1) 다익스트라 import heapq import collections n, m, r = map(int, input().split()) items = list(map(int, input().split())) graph = collections.defaultdict(list) for _ in range(r): u, v, w = map(int, input().split()) # start, end.. 2021. 7. 21. [DFS, BFS] 백준 3055번: 탈출 / 골드 5 https://www.acmicpc.net/problem/3055 3055번: 탈출 사악한 암흑의 군주 이민혁은 드디어 마법 구슬을 손에 넣었고, 그 능력을 실험해보기 위해 근처의 티떱숲에 홍수를 일으키려고 한다. 이 숲에는 고슴도치가 한 마리 살고 있다. 고슴도치는 제 www.acmicpc.net import collections x_lim, y_lim = map(int, input().split()) graph = [] visit = [] start = [] target = [] for x in range(x_lim): row = [x for x in input()] graph.append(row) visit.append([False]*len(row)) for y in range(len(row)): .. 2021. 7. 20. [정렬] 백준 1461번 : 도서관 / 골드 5 https://www.acmicpc.net/problem/1461 1461번: 도서관 첫째 줄에 책의 개수 N과, 세준이가 한 번에 들 수 있는 책의 개수 M이 주어진다. 둘째 줄에는 책의 위치가 주어진다. N은 10,000보다 작거나 같은 자연수이고, M은 10,000보다 작거나 같다. 책의 위치 www.acmicpc.net import bisect n, m = map(int, input().split()) books = list(map(int, input().split())) books.sort() i = bisect.bisect_left(books, 0) negatives = books[:i] positives = books[i:] answer = 0 if negatives: pos = 0 whil.. 2021. 7. 19. [DFS, BFS] 백준 13913번: 숨바꼭질 4 / 골드 4 https://www.acmicpc.net/problem/13913 13913번: 숨바꼭질 4 수빈이는 동생과 숨바꼭질을 하고 있다. 수빈이는 현재 점 N(0 ≤ N ≤ 100,000)에 있고, 동생은 점 K(0 ≤ K ≤ 100,000)에 있다. 수빈이는 걷거나 순간이동을 할 수 있다. 만약, 수빈이의 위치가 X일 www.acmicpc.net import collections n, k = map(int, input().split()) count = 0 visit = [False]*(100000+1) prev = {} if n == k: print(0) print(n) quit() def makeOrder(pos): ord = [pos] cur = pos while cur != n: ord.append(.. 2021. 7. 16. 이전 1 ··· 15 16 17 18 19 20 21 ··· 39 다음 반응형