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 | 31 |
Tags
- RootMotion
- UnrealEngine4
- 1563
- Programmers
- algorithm
- UE5
- Unreal Engine5
- C
- winapi
- 티스토리챌린지
- DeferredRendering
- 오블완
- const
- baekjoon
- RVO
- 팰린드롬 만들기
- directx
- Frustum
- softeer
- 백준
- 언리얼엔진5
- NRVO
- IFileDialog
- 프로그래머스
- UnrealEngine5
- C++
- 줄 세우기
- 2294
- DirectX11
- GeeksForGeeks
Archives
- Today
- Total
목록카드 정렬하기 (1)
Game Develop
[Algorithm] Baekjoon 1715번 : 카드 정렬하기
https://www.acmicpc.net/problem/1715 1715번: 카드 정렬하기 정렬된 두 묶음의 숫자 카드가 있다고 하자. 각 묶음의 카드의 수를 A, B라 하면 보통 두 묶음을 합쳐서 하나로 만드는 데에는 A+B 번의 비교를 해야 한다. 이를테면, 20장의 숫자 카드 묶음과 30장 www.acmicpc.net 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 32 33 34 35 36 37 38 int main() { ios::sync_with_stdio(false); cin.tie(0); cout.tie(0); int n,temp; long long sum = 0; priority_que..
Algorithm/Baekjoon
2023. 3. 8. 02:33