c++ 백준 2822번 점수 계산
2022. 7. 12.
방법 문제 번호와 문제 점수를 vector 자료구조에 담는다. 그리고 내림차순으로 정렬하여 상위 5개의 점수를 더한다. 그리고 해당하는 문제의 번호를 차례대로 받아서, 오름차순으로 정렬하여 맞춘 문제를 순서대로 출력해준다. #include using namespace std; bool cmp(pair a, pair b){ return a.second > b.second; } int main(){ vector scores; for(int i = 0; i > input; scores.push_back({i+1, input}); } sort(scores.begin(), scores.end(), cmp); vector order; int sum = 0; fo..