일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- 리눅스
- Vector
- Doubly Connected Edge List
- 분할축 이론
- 내적
- ubuntu
- 알고리즘
- AABB
- 백준
- 우분투
- 보로노이다이어그램
- 충돌 알고리즘
- linux
- 유니티
- Unity
- PS
- C
- Expanding Polytope Algorithm
- 문제풀이
- SOH
- C++
- 다이나믹 프로그래밍
- dp
- uclidean algorithm
- GJK
- 벡터
- 수학
- c#
- Graham Scan
- 외적
- Today
- Total
목록백준 (20)
마이 플밍 블로그
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..
https://www.acmicpc.net/problem/1806 1806번: 부분합 첫째 줄에 N (10 ≤ N > N >> S; minLength = N + 1; for (int i = 0; i > key; num.pus..
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..
https://www.acmicpc.net/problem/14719 14719번: 빗물 첫 번째 줄에는 2차원 세계의 세로 길이 H과 2차원 세계의 가로 길이 W가 주어진다. (1 ≤ H, W ≤ 500) 두 번째 줄에는 블록이 쌓인 높이를 의미하는 0이상 H이하의 정수가 2차원 세계의 맨 왼쪽 위치 www.acmicpc.net #include #include #include #include #include using namespace std; int H, W; int Block[510]; int main() { scanf("%d", &H); scanf("%d", &W); for (int i = 0; i < W; i++) { scanf("%d", &Block[i]); } int totalRain = 0;..