Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 알고리즘
- c#
- SOH
- PS
- 다이나믹 프로그래밍
- 우분투
- 내적
- 충돌 알고리즘
- 수학
- Vector
- uclidean algorithm
- 벡터
- 문제풀이
- Unity
- 외적
- Expanding Polytope Algorithm
- ubuntu
- AABB
- 분할축 이론
- GJK
- linux
- dp
- 보로노이다이어그램
- 유니티
- 백준
- Doubly Connected Edge List
- 리눅스
- C++
- C
- Graham Scan
Archives
- Today
- Total
목록14719 (1)
마이 플밍 블로그
백준 14719 - 빗물
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;..
문제풀이/백준
2021. 11. 24. 20:59