1053

作者: 峡迩 | 来源:发表于2017-09-04 15:32 被阅读0次
// 部分正确?
//

#include "stdafx.h"
#include<iostream>
#include<vector>
#include<iomanip>


using namespace std;



int main()
{
    unsigned n;
    double e;
    unsigned d;

    cin >> n >> e >> d;

    double tmp;
    vector<vector<double>> data(n, vector<double>());//创建n个vector元素!

    for (unsigned i = 0; i < n; ++i)
    {
        unsigned max;
        cin >> max;

        data[i].push_back(max);
        for (unsigned j = 0; j < max; j++)
        {
            cin >> tmp;
            data[i].push_back(tmp);
        }
    }

    unsigned maybe_kong = 0;
    unsigned must_kong = 0;

    for (auto &r : data)
    {
        size_t count_day = r[0];
        size_t count = 0;
        for (size_t i = 1; i < (count_day+1); ++i)  //将统计天数放入,则容器大小加一!
        {
            if (r.at(i) < e)
                ++count;
        }
        if ((2 * count) > count_day)
        {
            if (count > d)
            {
                must_kong = must_kong + 1;
            }
            else
            {
                maybe_kong = maybe_kong + 1;
            }
        }
    }
            

    cout.setf(ios::fixed);
    cout << setprecision(1) << (maybe_kong*1.0 / n*1.0) * 100 << "%" << " " << (must_kong*1.0 / n*1.0) * 100 << "%";//整数整除得到整数,必须转为小数!

    system("pause");
    return 0;
}

相关文章

  • 2022-03-22

    Georgia Reports 1053 New Cases, 7 Deaths 1053 new cases o...

  • 1053

  • 1053

    8月13日,农历七月十六,周六 高温40度,低温30度,咱这低温赶得上丫头那高温。继续大晴天。 昨天换药来回一个小...

  • 亲子(1053)

    2020.2.18 星期三 晴 (19号补写) 孩子们开始视频课程了,作为家长的走,一天天异常忙碌。为了...

  • 日记1053

    2022年11月6日 星期日 多云 周末监考第二天,经过一天的熟悉和练习,同志们的默契感更好了,一上午就这样安全...

  • 1053烟花

    昨晚的烟花,没去现场看,在网络渠道看了一下,感觉还是没有现场的气氛,毕竟,各种加工之后,就失去了原有的味道。 大概...

  • 【日精进打卡第351天】

    扬州方圆~~周亮 【知~学习】学习一级建造师内容 《六项精进》3遍。累积1053遍 《大学》3遍。累积1053遍 ...

  • nodejs

    https://www.php.cn/course/1053.html

  • 关于docker启动tomcat浏览器报404

    https://blog.csdn.net/zds18205657013/article/details/1053...

  • 陪伴—1053天

    我爱你 不是前一秒 也不是下一秒 而是这一秒

网友评论

      本文标题:1053

      本文链接:https://www.haomeiwen.com/subject/qxeejxtx.html