白駿c++1205求等
7923 ワード
レベル1205を取得
問題を解く
#include <iostream>
#include <algorithm>
#include <vector>
using namespace std;
void fast_io(void)
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
}
int main()
{
vector<int> v;
fast_io();
int n, score, p, res = 0; // 랭킹목록, 태수점수, 랭킹개수
cin >> n >> score >> p;
if (n == 0)
{
cout << "1";
return 0;
}
for (int i = 0; i < n; i++)
{
long long a;
cin >> a;
v.push_back(a);
}
sort(v.rbegin(), v.rend());
if (v.back() >= score && v.size() == p)
cout << "-1";
else
{
v.push_back(score);
sort(v.rbegin(), v.rend());
for (int i = 0; i < v.size(); i++)
{
if (v[i] == score)
{
res = i;
break;
}
}
cout << res + 1;
}
}
順番に等号を求めた.Reference
この問題について(白駿c++1205求等), 我々は、より多くの情報をここで見つけました https://velog.io/@jaranda/백준-c-1205번-등수-구하기テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol