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
- 프로그래머스
- Unreal Engine5
- 2294
- GeeksForGeeks
- C++
- 1563
- RVO
- 팰린드롬 만들기
- directx
- baekjoon
- RootMotion
- softeer
- NRVO
- algorithm
- UnrealEngine4
- 언리얼엔진5
- UE5
- C
- DirectX11
- UnrealEngine5
- winapi
- TObjectPtr
- 줄 세우기
- 백준
- const
- 티스토리챌린지
- 오블완
- IFileDialog
- Frustum
- Programmers
Archives
- Today
- Total
목록N번째 큰 수 (1)
Game Develop
[Algorithm]Baekjoon 2075번 :: N번째 큰 수
https://www.acmicpc.net/problem/2075 2075번: N번째 큰 수 첫째 줄에 N(1 ≤ N ≤ 1,500)이 주어진다. 다음 N개의 줄에는 각 줄마다 N개의 수가 주어진다. 표에 적힌 수는 -10억보다 크거나 같고, 10억보다 작거나 같은 정수이다. 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 int n, input; priority_queue pq; int main() { ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); cin >> n; for (int i = 0; i > inpu..
Algorithm/Baekjoon
2023. 11. 6. 20:59