P8342 [COCI2021-2022#6] Med 题解
题意:
给你 个人,还有他的五场成绩,第六场成绩不知道,但成绩在 中,问每个人的最优和最劣排名。
思路:
简单模拟题。
对于每个人,他的最大排名就是自己拿 ,别人都是 分。
他的最小排名是自己拿 分,别人都是 分。
模拟即可。
AC code:
/* Work by: TLE_Automation */ #include<cmath> #include<queue> #include<cstdio> #include<cstring> #include<iostream> #include<algorithm> #define LL long long #define int long long using namespace std; const int N = 1e6 + 10; const int MAXN = 2e5 + 10; inline char readchar() { static char buf[100000], *p1 = buf, *p2 = buf; return p1 == p2 && (p2 = (p1 = buf) + fread(buf, 1, 100000, stdin), p1 == p2) ? EOF : *p1++; } inline int read() { #define readchar getchar int res = 0, f = 0; char ch = readchar(); for (; !isdigit(ch); ch = readchar()) if (ch == '-') f = 1; for (; isdigit(ch); ch = readchar()) res = (res << 1) + (res << 3) + (ch ^ '0'); return f ? -res : res; } inline void print(int x) { if (x < 0 ) putchar('-'), x = -x; if (x > 9 ) print(x / 10); putchar(x % 10 + '0'); } struct _Node { string s; int sum; bool operator < (const _Node &x) const { return sum != x.sum ? sum > x.sum : s < x.s; } } a[MAXN], b[MAXN]; int wz; #define re register signed main() { // ios::sync_with_stdio(0);cin.tie(0), cout.tie(0); int n = read(); for (register int i = 1; i <= n; i++) { cin >> a[i].s; for (re int j = 1; j <= 5; j++) a[i].sum += read(); } for (re int i = 1; i <= n; i++) b[i].s = a[i].s, b[i].sum = a[i].sum; for (re int i = 1; i <= n; i++) { string S = a[i].s; for (re int j = 1; j <= n; j++) b[j].s = a[j].s, b[j].sum = a[j].sum; for (re int j = 1; j <= n; j++) { if (b[j].s == S) { b[j].sum += 500; break; } } sort(b + 1, b + n + 1); for (re int j = 1; j <= n; j++) { if (b[j].s == S) { printf("%lld ", j); wz = j; break; } } b[wz].sum -= 500; for(re int j = 1; j <= n; j++) { if(b[j].s != S) b[j].sum += 500; } sort(b + 1, b + n + 1); for (re int j = 1; j <= n; j++) { if (b[j].s == S) { printf("%lld\n", j); } } } return 0; }
本文作者:TLE_Automation
本文链接:https://www.cnblogs.com/tttttttle/p/16293582.html
版权声明:本作品采用知识共享署名-非商业性使用-禁止演绎 2.5 中国大陆许可协议进行许可。
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 分享一个免费、快速、无限量使用的满血 DeepSeek R1 模型,支持深度思考和联网搜索!
· 基于 Docker 搭建 FRP 内网穿透开源项目(很简单哒)
· ollama系列01:轻松3步本地部署deepseek,普通电脑可用
· 25岁的心里话
· 按钮权限的设计及实现