Google Kick Start 20201 알고리즘 스터디 Google KickStart 2020 Round A Plates 총 N개의 Plates 스텍이 있고, 각각 K 개의 plates가 있다. P개의 Plates를 선택했을때 최댓값을 구하는 문제이다. Limits Time limit: 20 seconds per test set. Memory limit: 1GB. 1 ≤ T ≤ 100. 1 ≤ K ≤ 30. 1 ≤ P ≤ N * K. The beauty values are between 1 and 100, inclusive. C++를 사용한 제 풀이입니다. #include #include #include #include using namespace std; int n, k, p; void solve() { cin >> n >> k >> p; vector a(.. 2020. 7. 13. 이전 1 다음