문제 링크 : https://school.programmers.co.kr/learn/courses/30/lessons/42747
메모
맞힌 코드
#include <bits/stdc++.h>
using namespace std;
int solution(vector<int> citations) {
int answer = 0;
sort(citations.begin(), citations.end(), greater<>());
for (int i=0; i<citations.size(); i++){
if(citations[i] >= i+1){
answer++;
}
}
return answer;
}
'Algorithm' 카테고리의 다른 글
[프로그래머스] 42842번 카펫 C++ (0) | 2024.11.13 |
---|---|
[프로그래머스] 86491번 최소직사각형 C++ (0) | 2024.11.13 |
[프로그래머스] 42748번 K번째수 C++ (0) | 2024.11.12 |
[프로그래머스] 1844번 게임 맵 최단거리 C++ (0) | 2024.11.11 |
[백준/BOJ] 20125번 쿠키의 신체 측정 C++ (0) | 2024.11.07 |