파이썬59 [백준 1305] 광고 - Python(파이썬) KMP 알고리즘을 활용한 코드 def to_lps(pat, L): lps = [0] * L i, n = 1, 0 while i < L: if pat[i] == pat[n]: n += 1 lps[i] = n i += 1 else: if n != 0: n = lps[n-1] else: i += 1 print(L - lps[-1]) L = int(input()) pat = input() to_lps(pat, L) 2021. 3. 31. [백준 11050] 이항 계수 1 - Python(파이썬) import sys N, K = map(int, sys.stdin.readline().split()) answer = 1 for i in range(N, N-K, -1): answer *= i answer /= N+1 - i print(int(answer)) 2021. 3. 31. [백준 11051] 이항 계수 2 - Python(파이썬) import sys N, K = map(int, sys.stdin.readline().split()) K = min(K, N-K) answer = 1 for i in range(N, N-K, -1): answer *= i answer //= (N+1 - i) print(answer % 10007) 2021. 3. 31. [백준 2470] 두 용액 - Python(파이썬) 투 포인터를 사용한 코드 import sys N = int(sys.stdin.readline().strip()) arr = sorted(list(map(int, sys.stdin.readline().split()))) s, e = 0, N-1 my_max = float('inf') answer = [] while s abs(temp): my_max = abs(temp) answer = [arr[s], arr[e]] if abs(arr[s]) < abs(arr[e]): e -= 1 else: s += 1 print(*answer) 2021. 3. 31. [백준 3273] 두 수의 합 - Python(파이썬) 투포인터를 사용한 코드 import sys n = int(sys.stdin.readline().strip()) arr = sorted(list(map(int, sys.stdin.readline().split()))) key = int(sys.stdin.readline().strip()) answer = 0 s, e = 0, n-1 while s < e: my_sum = arr[s] + arr[e] if my_sum == key: answer += 1 e -= 1 elif my_sum < key: s += 1 else: e -= 1 print(answer) 2021. 3. 31. [백준 1956] 운동 - Python(파이썬) from heapq import heappush, heappop import sys # 다익스트라 구현 def solution(x): check = [inf] * (V + 1) temp = [(0, x)] while temp: # w: 거리, idx: 해당 인덱스 w, idx = heappop(temp) # 인덱스가 x라는 것은 가장 짧게 한 사이클을 돌았다는 것을 의미 if x == idx and w != 0: break if check[idx] >= w: for i, d in dist[idx]: d += w if check[i] > d: check[i] = d heappush(temp, (d, i)) return check[x] V, E = map(int, sys.stdin.readline().spl.. 2021. 3. 27. 이전 1 2 3 4 5 ··· 10 다음