QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#587270 | #9370. Gambling on Choosing Regionals | SocialPanda | TL | 0ms | 3608kb | C++23 | 2.2kb | 2024-09-24 19:00:48 | 2024-09-24 19:00:48 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
// 定义类型别名,提高代码可读性
typedef long long ll;
typedef pair<int, int> pii;
// 解决函数
void solve()
{
int n, k;
cin >> n >> k;
// 使用 vector 代替 C 风格数组
vector<int> c(k + 1);
for(int i = 1; i <= k; i++) cin >> c[i];
// 将团队名称映射为唯一的整数ID
unordered_map<string, int> team_to_id;
int current_id = 0;
vector<vector<int>> sc; // 使用 vector 存储每个团队的分数
// 存储所有的查询,使用整数ID代替字符串
vector<pair<int, int>> vec;
vec.reserve(n);
for(int i = 0; i < n; i++)
{
int num;
string team;
cin >> num >> team;
// 如果团队尚未分配ID,则分配一个新的ID
if(team_to_id.find(team) == team_to_id.end())
{
team_to_id[team] = current_id++;
sc.emplace_back(); // 为新团队添加一个空的分数列表
}
int team_id = team_to_id[team];
sc[team_id].emplace_back(num);
vec.emplace_back(num, team_id);
}
// 对每个团队的分数进行排序
for(auto &scores : sc)
{
sort(scores.begin(), scores.end());
}
// 处理每个查询
for(auto &[num, team_id] : vec)
{
ll ans = LLONG_MAX;
// 遍历所有可能的k值
for(int i = 1; i <= k; i++)
{
ll rk = 1;
// 遍历所有团队,计算 sum(min(t_z, c[i]))
for(int z = 0; z < current_id; z++)
{
// 使用 lower_bound 计算 t_z
int t_z = sc[z].end() - lower_bound(sc[z].begin(), sc[z].end(), num);
t_z = min((ll)t_z, (ll)c[i]);
rk += t_z;
// 如果是当前查询的团队,减少1
if(z == team_id) rk -= 1;
}
ans = min(ans, rk);
}
cout << ans << "\n";
}
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int tt = 1;
// 如果有多组测试用例,可以取消注释下一行
// cin >> tt;
while(tt--) solve();
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3608kb
input:
5 3 1 2 3 100 THU 110 PKU 95 PKU 105 THU 115 PKU
output:
2 1 2 2 1
result:
ok 5 lines
Test #2:
score: 0
Accepted
time: 0ms
memory: 3548kb
input:
5 2 2 3 100 THU 110 PKU 95 PKU 105 THU 115 PKU
output:
4 2 4 3 1
result:
ok 5 lines
Test #3:
score: -100
Time Limit Exceeded
input:
100000 100000 57148 51001 13357 71125 98369 67226 49388 90852 66291 39573 38165 97007 15545 51437 89611 41523 27799 15529 16434 44291 47134 90227 26873 52252 41605 21269 9135 55784 70744 17563 79061 73981 70529 35681 91073 52031 23811 79501 1607 46365 76868 72137 71041 29217 96749 46417 40199 55907 ...