英国天文学家爱丁顿很喜欢骑车。据说他为了炫耀自己的骑车功力,还定义了一个“爱丁顿数”E,即满足有E天骑车超过E英里的最大整数E。据说爱丁顿自己的E等于87。
现给定某人N天的骑车距离,请你算出对应的爱丁顿数E(<=N)。
输入格式:
输入第一行给出一个正整数N(<=105),即连续骑车的天数;第二行给出N个非负整数,代表每天的骑车距离。
输出格式:
在一行中给出N天的爱丁顿数。
输入样例:
10
6 7 6 9 3 10 8 2 7 8
输出样例:
6
分析:从下标1开始存储n天的公里数在数组a中,对n个数据从大到小排序,i表示了骑车的天数,那么满足a[i] > i的最大值即为所求
| 代码长度限制 | 时间限制 | 内存限制 |
| 16KB |250ms | 64MB |
代码:
#include<bits/stdtr1c++.h>
using namespace std;
int N[100005];
int main() {
int n;
scanf("%d", &n);
for (int i = 1; i <= n; i++) {
scanf("%d", &N[i]);
}
sort(N + 1, N + n + 1, greater<int>());
int cnt = 0;
for (int i = 1; i <= n; i++) {
if (N[i] > i)
cnt++;
}
cout << cnt;
return 0;
}
标签:25,cnt,int,1060,爱丁顿,样例,骑车
From: https://www.cnblogs.com/Fare-well/p/16584844.html