"프로그래머스 138477 명예의 전당 (1)"의 두 판 사이의 차이

(새 문서: ==개요== {{프로그래머스|레벨=1|페이지=1|분류=연습문제}} ==C++== <syntaxhighlight lang='cpp'> #include <string> #include <vector> #include <algorithm> using namespa...)
 
 
1번째 줄: 1번째 줄:
==개요==
==개요==
{{프로그래머스|레벨=1|페이지=1|분류=연습문제}}
{{프로그래머스|레벨=1|페이지=2|분류=연습문제}}


==C++==
==C++==

2023년 11월 27일 (월) 20:19 기준 최신판

1 개요[ | ]

프로그래머스 138477 명예의 전당 (1)

2 C++[ | ]

#include <string>
#include <vector>
#include <algorithm>
using namespace std;

vector<int> solution(int k, vector<int> score) {
    vector<int> answer;
    vector<int> ranked;
    for(auto &s: score) {
        ranked.push_back(s);
        sort(ranked.begin(), ranked.end(), greater<int>());
        if(ranked.size()>k) ranked.pop_back();
        answer.push_back(ranked.back());
    }
    return answer;
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}