#include <string>
#include <vector>
#include <algorithm>
using namespace std;
int solution(vector<int> citations) {
int n = citations.size(), i;
sort(citations.begin(), citations.end(), greater<int>());
for (i = 1; i <= n; i++)
if (i > citations[i - 1])
return (i - 1);
return (i - 1);
}
진짜 역대급으로 해석이 안 되는 문제였다. 출제자님 미워요..... 문제 이해만 하면 매우 쉬운 문제였다.
'<algorithm> > 프로그래머스_고득점 kit' 카테고리의 다른 글
[프로그래머스 고득점kit] 완전탐색_피로도(c++)(순열 풀이) (0) | 2023.04.26 |
---|---|
[프로그래머스 고득점kit] 완전탐색_카펫(c++) (0) | 2023.04.26 |
[프로그래머스 고득점kit] 정렬_가장 큰 수(c++) (0) | 2023.04.16 |
[프로그래머스 고득점kit] 정렬_k번째수(c++) (0) | 2023.04.15 |
[프로그래머스 고득점kit] 스택/큐_주식가격(c++) (0) | 2023.04.12 |