第十一章 模拟 10 AcWing 1548. 才华与德行

第十一章 模拟 10 AcWing 1548. 才华与德行

原题链接

AcWing 1548. 才华与德行

算法标签

模拟 排序

思路

依题意模拟

代码

#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=100005, inf=0x3f3f3f3f3f3f3f3f, mod=1e9+7;
const double Exp=1e-8;
//int t, n, m, cnt, ans; 
int n, l, h, m;
struct Per{
    int id, vi, at, le;
    bool operator<(const Per &t) const{
        if(t.le!=le){
        	// 等级小在前
            return le<t.le;
        }
        if(t.vi+t.at!=vi+at){
        	// 总分高在前
            return (vi+at)>(t.vi+t.at);
        }
        if(t.vi!=vi){
        	// 德才分高在前
            return vi>t.vi;
        }
         // ID小在前
        return id<t.id;
    }
}p[N];
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);
}
signed main(){
	ios::sync_with_stdio(false);
	cin.tie(0);
	cout.tie(0);
	n=rd(), l=rd(), h=rd();
	m=0;
	int id, vi, at, le, to;
	while(n--){
	    id=rd(), vi=rd(), at=rd();
	    if(vi<l||at<l){
	        continue;
	    }else{
	        if(vi>=h&&at>=h){
	            le=1;
	        }else if(vi>=h&&at<h){
	            le=2;
	        }else if(vi<h&&at<h&&vi>=at){
	            le=3;
	        }else{
	            le=4;
	        }
	        p[m++]={id, vi, at, le};
	    }
	}
	sort(p, p+m);
	printf("%lld\n", m);
	rep(i, 0, m){
	    printf("%08lld %lld %lld\n", p[i].id, p[i].vi, p[i].at);
	}
	return 0;
}

参考文献

AcWing 1548. 才华与德行(PAT甲级辅导课)y总视频讲解

原创不易
转载请标明出处
如果对你有所帮助 别忘啦点赞支持哈
在这里插入图片描述

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

飞滕人生TYF

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值