第九章 哈希表 7 AcWing 1630. 期终成绩
原题链接
算法标签
模拟 哈希表 排序
思路
使用unordered_map, 依题意模拟
代码
#pragma GCC optimize(2)
#pragma GCC optimize(3)
#include<bits/stdc++.h>
#define int long long
#define xx first
#define yy second
#define ump unordered_map
#define us unordered_set
#define pq priority_queue
#define rep(i, a, b) for(int i=a;i<b;++i)
#define Rep(i, a, b) for(int i=a;i>=b;--i)
using namespace std;
typedef pair<int, int> PII;
const int N=10005, INF=0x3f3f3f3f3f3f3f3f, MOD=1e9+7;
const double Exp=1e-8;
//int t, n, m, cnt, ans;
int p, m, n, x;
char c[25];
string s;
inline int rd(){
int s=0,w=1;
char ch=getchar();
while(ch<'0'||ch>'9'){if(ch=='-')w=-1;ch=getchar();}
while(ch>='0'&&ch<='9') s=s*10+ch-'0',ch=getchar();
return s*w;
}
void put(int x) {
if(x<0) putchar('-'),x=-x;
if(x>=10) put(x/10);
putchar(x%10^48);
}
struct Stu{
string id;
int p, f, m, s;
// 初始化Stu属性
Stu():p(-1), f(-1), m(-1), s(0){};
void cal(){
if(f>=m){
s=f;
}else{
// round函数四舍五入精确到整数
s=round(m*0.4+f*0.6);
}
}
bool operator<(const Stu&A ) const {
// 总评分数递减
if(A.s!=s){
return A.s<s;
}
// 学号递增
return id<A.id;
}
};
signed main(){
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
ump<string, Stu> h;
vector<Stu> ss;
p=rd(), m=rd(), n=rd();
rep(i, 0, p){
scanf("%s%lld", c, &x);
s=c;
h[s].id=s;
h[s].p=x;
}
rep(i, 0, m){
scanf("%s%lld", c, &x);
s=c;
h[s].id=s;
h[s].m=x;
}
rep(i, 0, n){
scanf("%s%lld", c, &x);
s=c;
h[s].id=s;
h[s].f=x;
}
for(auto x:h){
auto stu=x.second;
stu.cal();
if(stu.p>=200&&stu.s>=60){
ss.push_back(stu);
}
}
sort(ss.begin(), ss.end());
for(auto x:ss){
printf("%s %lld %lld %lld %lld\n", (x.id).c_str(), x.p, x.m, x.f, x.s);
}
return 0;
}
参考文献
AcWing 1630. 期终成绩(PAT甲级辅导课)y总视频讲解
原创不易
转载请标明出处
如果对你有所帮助 别忘啦点赞支持哈