일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 탑다운
- opic
- stack 스택
- 바텀업
- 오픽가격
- 오픽점수잘받는방법
- 오픽노잼
- 영어회화
- dp
- 오픽공부법
- 안드로이드주석
- dynamicProgramming
- 이진탐색
- 메모이제이션
- XML주석
- 디피
- 다이나믹프로그래밍
- 영어말하기
- 주석
- fibo
- XML
- 안드로이드
- 피보나치수열
- English
- 오픽노잼공부방법
- 오픽
- topdown
- ㅂ
- 이진탐색 #나무 자르기
목록PS/BOJ (143)
RUBY
출처:: 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..

출처:: https://www.acmicpc.net/problem/1697 1. 문제 이해 및 해결과정 -최소시간 구하는 문제 BFS -현재 좌표가 0 ~ 100000 벗어나지 않고, 다음 좌표로 이동시 현재 좌표 + 1 2. 풀이방법 1.[C++] BFS #if 01 //숨박꼭질 // https://www.acmicpc.net/problem/1697 #include #include #define MAX 100000 using namespace std; int N, K; int visited[MAX + 10]; queue q; int BFS() { q.push(N); visited[N] = 1; while (!q.empty()) { int cur = q.front(); q.pop(); if (cur ==..

출처::https://www.acmicpc.net/problem/1260 1260번: DFS와 BFS 첫째 줄에 정점의 개수 N(1 ≤ N ≤ 1,000), 간선의 개수 M(1 ≤ M ≤ 10,000), 탐색을 시작할 정점의 번호 V가 주어진다. 다음 M개의 줄에는 간선이 연결하는 두 정점의 번호가 주어진다. 어떤 두 정점 사이에 여러 개의 간선이 있을 수 있다. 입력으로 주어지는 간선은 양방향이다. www.acmicpc.net 1. 문제 이해 및 해결과정 2. 풀이방법 #include #include #include using namespace std; int N, M,V; int adj[1000 + 100][1000 + 100]; int visited[1000 + 100]; void DFS(int v..