solution
- 天数 小于等于 观察期阈值时
- 若有一半以上的天数低于阈值,则可能空置
- 天数 大于 观察期阈值时
- 若有一半以上的天数低于阈值,则空置
- 输出
%
方式printf("%c", '%')
printf("%s", "%")
printf("%%")
#include<iostream>
using namespace std;
int main(){
double n, e, d, m, x, may = 0, must = 0;
scanf("%lf%lf%lf", &n, &e, &d);
for(int i = 0; i < n; i++){
scanf("%lf", &m);
int cnt = 0;
for(int i = 1; i <= m; i++){
scanf("%lf", &x);
if(x < e) cnt++;
}
if(cnt > m / 2){
if(m > d) must++;
else may++;
}
}
printf("%.1f%% %.1f%%", may / n * 100, must / n * 100);
return 0;
}