일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- 주석
- 이진탐색
- ㅂ
- stack 스택
- dp
- 다이나믹프로그래밍
- XML
- fibo
- 오픽공부법
- 탑다운
- English
- 이진탐색 #나무 자르기
- 메모이제이션
- 오픽노잼
- 오픽점수잘받는방법
- topdown
- 바텀업
- 영어말하기
- 피보나치수열
- 영어회화
- dynamicProgramming
- opic
- XML주석
- 오픽가격
- 안드로이드
- 디피
- 오픽
- 안드로이드주석
- 오픽노잼공부방법
목록전체 글 (298)
RUBY
출처:: https://www.acmicpc.net/problem/15665 1. 문제 이해 및 해결과정 -중복순열 2. 풀이방법 1. join으로 출력하기 #N과 M (11) #https://www.acmicpc.net/problem/15665 import sys sys.stdin = open("input.txt","r") def DFS(L): if L==m: #for x in res: #print(x,end=' ') print(' '.join(map(str,res))) #print() else: for i in range(len(a)): res[L]=a[i] DFS(L+1) if __name__=="__main__": n, m = map(int, input().split()) a = sorted(se..
출처:: https://www.acmicpc.net/problem/15664 1. 문제 이해 및 해결과정 -중복되는 경우의 수를 제외한 조합 2. 풀이방법 1.조합 라이브러리 #N과 M (10) #https://www.acmicpc.net/problem/15664 import sys import itertools as it sys.stdin = open("input.txt","r") n, m = map(int, input().split()) a = list(map(int, input().split())) a.sort() for k in sorted(set(it.combinations(a,m))): #print(k) print(' '.join(map(str,k))) 2. 각 수의 개수를 이용하는 방법, D..
출처:: https://www.acmicpc.net/problem/15663 1. 문제 이해 및 해결과정 - 중복되는 경우의 수를 제외한 수열 2. 풀이방법 1. permutaion 라이브러리 이용 , set()이용 #N과 M (9) #https://www.acmicpc.net/problem/15663 import sys import itertools as it sys.stdin = open("input.txt","r") n, m = map(int, input().split()) a = list(map(int, input().split())) for k in sorted(set(it.permutations(a,m))): #print(k) print(' '.join(map(str,k))) 2. DFS, c..
출처:: https://www.acmicpc.net/problem/15657 1. 문제 이해 및 해결과정 - 중복조합 2. 풀이방법 1. DFS #N과 M (8) #https://www.acmicpc.net/problem/15657 #중복조합 import sys sys.stdin = open("input.txt","r") def DFS(L,s): if L==m: for x in res: print(x,end=' ') print() else: for i in range(s,n): res[L]=a[i] DFS(L+1,i) if __name__=="__main__": n, m = map(int, input().split()) a = list(map(int, input().split())) res = [0] *..
출처:: https://www.acmicpc.net/problem/15656 1. 문제 이해 및 해결과정 -중복순열 2. 풀이방법 1. DFS #N과 M (7) #https://www.acmicpc.net/problem/15656 #중복순열 import sys sys.stdin = open("input.txt","r") def DFS(L): if L==m: for x in res: print(x,end=' ') print() else: for i in range(0,n): res[L]=a[i] DFS(L+1) if __name__=="__main__": n,m=map(int,input().split()) a=list(map(int,input().split())) res=[0]*m a.sort() DFS(..
출처:: https://www.acmicpc.net/problem/15655 1. 문제 이해 및 해결과정 -조합 : d(L,S) 2. 풀이방법 1.DFS #N과 M (6) #https://www.acmicpc.net/problem/15655 #조합 import sys sys.stdin = open("input.txt","r") def DFS(L,s): if L==m: for x in res: print(x,end=' ') print() else: for i in range(s,n+1): res[L]=a[i] DFS(L+1,i+1) if __name__=="__main__": n, m = map(int, input().split()) a=list(map(int,input().split())) a.sort(..
출처:: https://www.acmicpc.net/problem/15654 1. 문제 이해 및 해결과정 -순열 : ch와 res를 이용함 2. 풀이방법 1. DFS #N과 M (5) #https://www.acmicpc.net/problem/15654 #순열 import sys sys.stdin = open("input.txt","r") def DFS(L): if L==m: for x in res: print(x,end=' ') print() else: for i in range(1,n+1): if ch[i]==1: continue ch[i]=1 res[L]=a[i] DFS(L+1) ch[i]=0 if __name__=="__main__": n, m = map(int, input().split()) a..
출처:: https://www.acmicpc.net/problem/1927 1. 문제 이해 및 해결과정 https://hiruby.tistory.com/178 2. 풀이방법 import sys import heapq as hq sys.stdin = open("input.txt","r") a=[] n = int(input()) for _ in range(n): x=int(input()) if x==-1: #종료 break elif x==0: #출력 if len(a)==0: print(0) else: print(hq.heappop(a)) else: #넣기 hq.heappush(a,x) #a리스트에 x넣음 3. 오답원인 -input() 으로 코드를 제출할 시 시간초과가 뜨지만, sys.stdin.readlin..