标题: 2024ICPC网络赛第二场 [打印本页] 作者: 卖不甜枣 时间: 2024-10-11 02:40 标题: 2024ICPC网络赛第二场 VP链接
Codeforces:Dashboard - The 2024 ICPC Asia EC Regionals Online Contest (II) - Codeforces
QOJ:The 2024 ICPC Asia East Continent Online Contest (II) - Dashboard - Contest - QOJ.ac
A. Gambling on Choosing Regionals
注意到对于每个队伍来说最坏情况是与所有最强的队一个赛站,那么该队伍的排名会最低,以是为了让自己队伍的排名尽大概地高,最优选择就是去容纳量最小的赛站。
对 c 进行读入的时候只需要记录最小的 c 的值 ,同时利用 unordered_map 记录每一个队伍在学校内的排名,将每个学校前 支队伍放进一个数组 b 里,再将数组 b 从大到小排序。
输出答案的时候,从头至尾依次遍历每一支队伍
如果队伍在学校的名次小于即是 ,该队伍的最优排名就是在数组 b 里的下标
如果队伍在学校的名次大于 ,相称于要把同学校的一支队伍移出这个赛站,再将这支队伍放进这个赛站,那么只需要利用二分找出 b 数组中第一个小于该队伍本领的队伍的位置 pos(题目保证每个队伍本领不同,不存在即是的情况),该队伍终极的排名就是 pos - 1(要将其学校前面即本领较强的队伍移出,以是排名要 -1)。
#include <bits/stdc++.h>
using namespace std;
const int N = 1e5 + 10;
int n, k, c, minc = INT_MAX, idx = 0, b[N];
struct node {
int w, id, rnk = 0;
bool operator< (const node &x) const {
return x.w > w;
}
} a[N];
unordered_map<string, priority_queue<node>> mp;
inline int read() {
int x = 0, f = 1; char c = getchar();
while (c < '0' || c > '9') { if (c == '-') f = -1; c = getchar(); }
while (c >= '0' && c <= '9') x = x * 10 + c - '0', c = getchar();
return x * f;
}
int main() {
n = read(), k = read();
for (int i = 1; i <= k; i++) c = read(), minc = min(minc, c);
for (int i = 1; i <= n; i++) {
a[i].w = read(), a[i].id = i;
string s; char c = getchar();
while (c < 'A' || c > 'Z') c = getchar();
while (c >= 'A' && c <= 'Z') s += c, c = getchar();