原题链接:https://codeforces.com/contest/1165/problem/B
样例:
Input43 1 4 1Output3Input31 1 1Output1Input51 1 1 2 2Output2
题意:你在第k天至少要解决k个问题,你有n个比赛列表,每场比赛都有若干个问题,若参加了比赛没解决完的会自动丢弃,若没有达成最低的问题解决数,则停止训练,问你最多能训练多少天?
解题思路: 往死里贪就行。我们每次都想达成最优的效果,对问题列表排序,依次判断,若不行则遍历下一场比赛,若行则天数加1。最后输出训练天数即可。
AC代码:
/**邮箱:unique_powerhouse@qq.com*blog:https://me.csdn.net/hzf0701*注:文章若有任何问题请私信我或评论区留言,谢谢支持。**/#include<bits/stdc++.h> //POJ不支持#define rep(i,a,n) for (int i=a;i<=n;i++)//i为循环变量,a为初始值,n为界限值,递增#define per(i,a,n) for (int i=a;i>=n;i--)//i为循环变量, a为初始值,n为界限值,递减。#define pb push_back#define IOS ios::sync_with_stdio(false);cin.tie(0); cout.tie(0)#define fi first#define se second#define mp make_pairusing namespace std;const int inf = 0x3f3f3f3f;//无穷大const int maxn = 2e5+2;//最大值。typedef long long ll;typedef long double ld;typedef pair<ll, ll> pll;typedef pair<int, int> pii;//*******************************分割线,以上为自定义代码模板***************************************//int main(){//freopen(\"in.txt\", \"r\", stdin);//提交的时候要注释掉IOS;int n,nums[maxn];while(cin>>n){rep(i,0,n-1)cin>>nums[i];int sum=0,k=1;sort(nums,nums+n);rep(i,0,n-1){if(k<=nums[i]){sum++;k++;}}cout<<sum<<endl;}return 0;}