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
- 스택
- Team Fortress 2
- 알고리즘
- 재귀
- 시뮬레이션
- 투 포인터
- 구현
- 누적 합
- XR Interaction Toolkit
- 그리디 알고리즘
- 유니티
- 문자열
- c++
- ue5
- 다이나믹 프로그래밍
- 다익스트라
- DFS
- Unreal Engine 5
- 백트래킹
- 백준
- 수학
- 브루트포스
- BFS
- 유니온 파인드
- 자료구조
- VR
- 그래프
- 우선순위 큐
- 트리
- 정렬
Archives
- Today
- Total
목록기타 레슨 C++ (1)
1일1알

이분 탐색으로 해결할 수 있는 문제이다. 최소를 동영상의 길이의 최소로 하고, 최대를 동영상의 길이들의 총 합으로 시작해서 이분탐색을 하면서 가장 적절한 블루레이의 크기를 구할 수 있다. #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std; typedef long long ll; int n, m; int sum = 0; int arr[100001] = { 0 }; bool IsPossible(int value) { int cnt = 0; int sum = 0; for (int i = 0; i < n; i++) { ..
알고리즘
2021. 12. 12. 12:13