일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- AABB
- C++
- PS
- C
- 우분투
- 내적
- linux
- 보로노이다이어그램
- Vector
- 다이나믹 프로그래밍
- Doubly Connected Edge List
- 백준
- 충돌 알고리즘
- 수학
- c#
- dp
- 외적
- Expanding Polytope Algorithm
- 벡터
- ubuntu
- Graham Scan
- 알고리즘
- SOH
- 유니티
- 리눅스
- Unity
- uclidean algorithm
- 문제풀이
- 분할축 이론
- GJK
- Today
- Total
목록문제풀이 (18)
마이 플밍 블로그
14238번: 출근 기록 스타트링크에는 세명의 직원이 일을 하고 있다. 세 직원의 이름은 강호(A), 준규(B), 수빈(C) 이다. 이 회사의 직원은 특별한 룰을 가지고 있는데, 바로 하루에 한 명만 출근한다는 것이다. 3일간의 www.acmicpc.net 코드 #include #include #include #include #include using namespace std; int workerCount[3]; bool dp[51][51][51][3][3] = { false }; char ans[51]; bool DP(int a, int b, int c, int bbefore, int before) { if (workerCount[0] == a && workerCount[1] == b && worker..
12851번: 숨바꼭질 2 수빈이는 동생과 숨바꼭질을 하고 있다. 수빈이는 현재 점 N(0 ≤ N ≤ 100,000)에 있고, 동생은 점 K(0 ≤ K ≤ 100,000)에 있다. 수빈이는 걷거나 순간이동을 할 수 있다. 만약, 수빈이의 위치가 X일 때 www.acmicpc.net #include #include using namespace std; int N, K; int findCount = 0; int minFindTime = 1000000000; int flag[100001] = { 0 }; void FindTime(int index, int time) { queue q; q.push(make_pair(index, time)); while (q.size() > 0) { int pos = q.fro..