โ
์ฌ๊ท ํ์ด answer=0def dfs(numbers,target,cur_idx,cur_total): global answer # ํ์ถ ์กฐ๊ฑด(๋ชจ๋ ์ ์ํ) if cur_idx==len(numbers): if cur_total==target: answer+=1 return else: dfs(numbers,target,cur_idx+1,cur_total+numbers[cur_idx]) dfs(numbers,target,cur_idx+1,cur_total-numbers[cur_idx])def solution(numbers, target): global answer dfs(numbers,target,0,..
https://school.programmers.co.kr/learn/courses/30/lessons/154540 ํ๋ก๊ทธ๋๋จธ์ค์ฝ๋ ์ค์ฌ์ ๊ฐ๋ฐ์ ์ฑ์ฉ. ์คํ ๊ธฐ๋ฐ์ ํฌ์ง์
๋งค์นญ. ํ๋ก๊ทธ๋๋จธ์ค์ ๊ฐ๋ฐ์ ๋ง์ถคํ ํ๋กํ์ ๋ฑ๋กํ๊ณ , ๋์ ๊ธฐ์ ๊ถํฉ์ด ์ ๋ง๋ ๊ธฐ์
๋ค์ ๋งค์นญ ๋ฐ์ผ์ธ์.programmers.co.kr โ
DFS ํ์ดimport syssys.setrecursionlimit(10**6)dx = [1, -1, 0, 0]dy = [0, 0, -1, 1]def dfs(x, y, graph): count = graph[x][y] # ํ์ฌ ์์น ์๋๊ฐ graph[x][y] = 0 # ๋ฐฉ๋ฌธ ์ฒ๋ฆฌ for d in range(4): nx = x + dx[d] ny =..
โ 1์ฐจ ํ์ดfrom itertools import productdef solution(n): num_list = [1, 2] count = 0 for i in range(1, n + 1): for perm in product(num_list, repeat=i): if sum(perm) == n: count += 1 continue return count % 1234567๋ชจ๋ ์กฐํฉ์ ์ค๋ณต์ด ๊ฐ๋ฅํ product๋ฅผ ์ฌ์ฉํ์ฌ ๋ง๋ค๊ณ , ๊ทธ ํฉ์ด n์ด ๋๋ฉด ์นด์ดํธ๋ฅผ ์ฆ๊ฐ์ํค๋ ๋ฐฉ๋ฒ์ผ๋ก ํด๋ณด์๋ค. ์ญ์๋, ์๊ฐ์ด๊ณผ๊ฐ ๋ฐ์ํ์๋ค. ์ด ๋ฌธ์ ์นดํ
๊ณ ๋ฆฌ๊ฐ DP์ธ๋ฐ, ๋์ ํ๋ก๊ทธ๋๋ฐ ๋ํ์ ํ์ธ ํผ๋ณด๋์น์ ๊ฐ์ ํจํด์..
๐ฅSilver 5 https://www.acmicpc.net/problem/10815 โ
1์ฐจ ํ์ดimport sysinput=sys.stdin.readlineanswer=''n=int(input())having_cards=set(map(int,input().rstrip().split()))m=int(input())num_list=list(map(int,input().rstrip().split()))for num in num_list: if num in having_cards: answer+='1' else: answer+='0'print(' '.join(answer))input์ ๋ฒ์๊ฐ 10^7์ผ๋ก ์ด๋ถํ์์ ํด์ผํ๋ ํ์ง๋ง, ์ผ๋จ ํ๋ฒ ์ ์งํ๊ฒ ํ์ด๋ณด์๋ค.์๊ทผ์ด..
https://school.programmers.co.kr/learn/courses/30/lessons/42747 ํ๋ก๊ทธ๋๋จธ์ค์ฝ๋ ์ค์ฌ์ ๊ฐ๋ฐ์ ์ฑ์ฉ. ์คํ ๊ธฐ๋ฐ์ ํฌ์ง์
๋งค์นญ. ํ๋ก๊ทธ๋๋จธ์ค์ ๊ฐ๋ฐ์ ๋ง์ถคํ ํ๋กํ์ ๋ฑ๋กํ๊ณ , ๋์ ๊ธฐ์ ๊ถํฉ์ด ์ ๋ง๋ ๊ธฐ์
๋ค์ ๋งค์นญ ๋ฐ์ผ์ธ์.programmers.co.kr โ
์ ๋ตํ์ด (Python)def solution(citations): citations.sort(reverse=True) h=0 for i in range(len(citations)): if citations[i]>=i+1: h=i+1 return hh๋ฒ ์ด์ ์ธ์ฉ๋ ๋
ผ๋ฌธ์ด hํธ์ด์์ด๋ผ๋ ์กฐ๊ฑด์ ๋ง์กฑํ๋ h๊ฐ ์ค, ์ ์ผ ํฐ h๊ฐ์ ์ฐพ์์ผํ..
https://school.programmers.co.kr/learn/courses/30/lessons/159994 ํ๋ก๊ทธ๋๋จธ์ค์ฝ๋ ์ค์ฌ์ ๊ฐ๋ฐ์ ์ฑ์ฉ. ์คํ ๊ธฐ๋ฐ์ ํฌ์ง์
๋งค์นญ. ํ๋ก๊ทธ๋๋จธ์ค์ ๊ฐ๋ฐ์ ๋ง์ถคํ ํ๋กํ์ ๋ฑ๋กํ๊ณ , ๋์ ๊ธฐ์ ๊ถํฉ์ด ์ ๋ง๋ ๊ธฐ์
๋ค์ ๋งค์นญ ๋ฐ์ผ์ธ์.programmers.co.kr โ
์ ๋ต ํ์ด Queue (Python)# ๊ฐ์ฅ ๋งจ์ ์์๊ฐ ๋น ์ ธ๋๊ฐ์ผ ๋ค์ ์์๊ฐ ๋น ์ ธ๋๊ฐ ์ ์์ผ๋ฏ๋ก -> queue ์ฌ์ฉfrom collections import dequedef solution(cards1, cards2, goal): first_cards=deque(cards1) sec_cards=deque(cards2) for word in goal: if fi..
https://school.programmers.co.kr/learn/courses/30/lessons/42628 ํ๋ก๊ทธ๋๋จธ์ค์ฝ๋ ์ค์ฌ์ ๊ฐ๋ฐ์ ์ฑ์ฉ. ์คํ ๊ธฐ๋ฐ์ ํฌ์ง์
๋งค์นญ. ํ๋ก๊ทธ๋๋จธ์ค์ ๊ฐ๋ฐ์ ๋ง์ถคํ ํ๋กํ์ ๋ฑ๋กํ๊ณ , ๋์ ๊ธฐ์ ๊ถํฉ์ด ์ ๋ง๋ ๊ธฐ์
๋ค์ ๋งค์นญ ๋ฐ์ผ์ธ์.programmers.co.kr โ
1์ฐจ ํ์ด import heapqdef solution(operations): heap = [] for operation in operations: [inst, value] = operation.split(' ') value = int(value) if inst == 'I': # heap ์ฝ์
heapq.hea..
https://school.programmers.co.kr/learn/courses/30/lessons/42626?language=python3 ํ๋ก๊ทธ๋๋จธ์ค์ฝ๋ ์ค์ฌ์ ๊ฐ๋ฐ์ ์ฑ์ฉ. ์คํ ๊ธฐ๋ฐ์ ํฌ์ง์
๋งค์นญ. ํ๋ก๊ทธ๋๋จธ์ค์ ๊ฐ๋ฐ์ ๋ง์ถคํ ํ๋กํ์ ๋ฑ๋กํ๊ณ , ๋์ ๊ธฐ์ ๊ถํฉ์ด ์ ๋ง๋ ๊ธฐ์
๋ค์ ๋งค์นญ ๋ฐ์ผ์ธ์.programmers.co.kr โ 1์ฐจ ํ์ดimport heapqmin_heap = []def solution(scoville, K): heapq.heapify(scoville) count = 0 while scoville: # popํ ๊ฐ์ด k์ด์์ด๋๋ฉด, while ์ข
๋ฃ min_value = heapq.heappop(scoville) if mi..