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
- ue5
- 다이나믹 프로그래밍
- 구현
- 백트래킹
- Unreal Engine 5
- 수학
- VR
- 시뮬레이션
- 투 포인터
- 그리디 알고리즘
- 문자열
- 유니티
- 재귀
- BFS
- 다익스트라
- 우선순위 큐
- XR Interaction Toolkit
- DFS
- Team Fortress 2
- c++
- 누적 합
- 트리
- 그래프
- 브루트포스
- 유니온 파인드
- 자료구조
- 백준
- 알고리즘
- 정렬
- 스택
Archives
- Today
- Total
목록백준 3980 C++ (1)
1일1알
백준 3980번 선발 명단 C++
https://www.acmicpc.net/problem/3980 3980번: 선발 명단 각각의 테스트 케이스에 대해서, 모든 포지션의 선수를 채웠을 때, 능력치의 합의 최댓값을 한 줄에 하나씩 출력한다. 항상 하나 이상의 올바른 라인업을 만들 수 있다. www.acmicpc.net 백트래킹, 능력치가 0이면 배치할 수 없다는 것이 핵심 #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std; using int64 = long long; vector abilities; ..
알고리즘
2023. 1. 3. 12:35