Contents
3.1.2. ¶
- sort/권기
- subsequence/권기 - 부 구, , 공격 문 드 모두 . 근데 공개기 부럽..
3.4.1. 내 ¶
* 가 :
- 늘 문
- 곽병
- 김
- 단르기
- BackTracking문 1문
- 단르기
- 권기
- 곽병
- 보기 : land
3.13.1. 내 ¶
- 김
- 드_1C라드: 857
- Consonants, Pogo, The Great Wall
- Consonants, Pogo, The Great Wall
- 드_1C라드: 857
def Solve(x, y): N = 0 sum = 0 while sum < abs(x) + abs(y) or (sum + x + y) % 2 == 1: N += 1 sum += N result = "" while N > 0: if abs(x) > abs(y): if x > 0: result += 'E' x -= N else: result += 'W' x += N else: if y > 0: result += 'N' y -= N else: result += 'S' y += N N -= 1 return result.reversed()
- 권기
- 곽병
3.14. 6 27 ¶
- 김 : Dynamic Programming 6.1~6.3
- Shortest Path : DAG(directed acyclic graphs)로 바꾼 Source부 dist(v) = min{dist(v) + l(u,v)}
- 170p
- 170p
- Longest increasing subsequence : DAG로 바꾼다.(increasing는 곳만 edge됨) 가 많 방문록 L(j) = 1+ max{L(i) : (i,j)}
- 대 path 길를 구 뒤로 돌가면 가 드는 녀들 담면 path 구 다.
- 대 path 길를 구 뒤로 돌가면 가 드는 녀들 담면 path 구 다.
- Edit distance : 글 류개 구기 (exponential과 polynomial 류는 6개.)
- Similar to DTW
- Similar to DTW
- Shortest Path : DAG(directed acyclic graphs)로 바꾼 Source부 dist(v) = min{dist(v) + l(u,v)}
- 권기 : 3 그래
- 곽병 : Hoffman code - 데 같..
3.15.2. 내 ¶
- 김 : DP
- Maximum Sum - kadane's algorithm
- proof - http://prezi.com/fsaynn-iexse/kadanes-algorithm/
- Array subset 가 록 는 부기.
- proof - http://prezi.com/fsaynn-iexse/kadanes-algorithm/
- 권기 :
- Topological sort -
- Strongly Connected Component(SCC)
- Tarjan's strongly connected components algorithm - 링
- URL '가 들가면 개고.
- URL '가 들가면 개고.
- Tarjan's strongly connected components algorithm - 링
- Topological sort -
- 곽병 :
3.16.2. 내 ¶
- 김 : Dynamic Programming
- KnapsackProblem/김 : 0/1냅 문 다..
- KnapsackProblem/김 : 0/1냅 문 다..
- 곽병 : 붓그리기?
- 권기 : ?
3.17.2. 내 ¶
- 고문 prime_path http://211.229.66.5/30stair/prime_path/prime_path.php?pname=prime_path
- 곽병: 맵 각각 독립 그래들 기 - 문 고 겠, 그래 문 면 녁
- 김: gusul/김
3.18. 7 25 ¶
- (교란) - http://ko.wikipedia.org/wiki/
- !n = (n - 1) * (!(n - 2) + !(n - 1))
- 명 - http://blog.naver.com/PostView.nhn?blogId=kcg2271&logNo=90064644595
- !n = (n - 1) * (!(n - 2) + !(n - 1))
- DP 문 worm/김 - 때 k=0 k=1, k=2때를 . - 긴 는게 .
- Bar_code 문 - http://211.229.66.5/30stair/bar_code/bar_code.php?pname=bar_code
- - 블 DP문, d(bar,unit,width)는 bar bar를 면, unit 그 bar width 때 경다. 따라 가능 모든 바드 를 구는 것 d(bar,unit,0 ~ width)를 부 더면 된다.
- : d(bar, unit, width) += d(bar - 1,unit - width,l);
- 구는 것 방 구나, index를 내는 것 들.
- 명면 1110110 라는 것 때, 1110110 기 는 110로 는 모든 바드가 것고, 그 는 10로 는 모든 바드가 것다. 그리고 1110110라는 바드가 기 는 111000로 는 모든 바드가 것고, 그 는 11100로 는 모든 바드가 것다. dp블 당 경 대 경 를 모두 놨기 때문, 부 례대로 바드 를 더나가면 index를 구 다.
- 면 : dp블 범 벗나는 경(를 들 )가 나 므로 대 리를 다. 디 드를 때, 블 범 벗나 답 나는 경가 겨 런 를 발견기 들..
- - 블 DP문, d(bar,unit,width)는 bar bar를 면, unit 그 bar width 때 경다. 따라 가능 모든 바드 를 구는 것 d(bar,unit,0 ~ width)를 부 더면 된다.
3.21. 8 13,8 15 ¶
- 2012 ICPC대 문 기 : 링
- C - Critical 3-path
- 렬, critical path 대 공부 및 딩 - 드 및 Fundamental of DataStructure를 고.
- 렬, critical path 대 공부 및 딩 - 드 및 Fundamental of DataStructure를 고.
- C - Critical 3-path
- 리미노
- DP문. POLY/김
- DP문. POLY/김
3.22. 8 21,8 28, 8 30 ¶
- 2 대로그래밍 대 동리 링
- 각 2개가 겹는 닌 는 방법
Ax1 A각 x. By2는 B각 른래 y if Ax1 < Bx1 if Bx1 > Ax2 && By1 > Ay2 if By2 > Ay1 then 겹 else 겹 else 겹 else A B를 바꿔
- Sliding Window Minimum Algorithm - http://people.cs.uct.ac.za/~ksmith/articles/sliding_window_minimum.html