• Gym 100851E Easy Problemset (模拟题)


    Problem E. Easy Problemset
    Input file: easy.in

    Output file: easy.out
    Perhaps one of the hardest problems of any ACM ICPC contest is to create a problemset with a reasonable number of easy problems. On Not Easy European Regional Contest this problem is solved as follows. There are n jury members (judges). They are numbered from 1 to n. Judge number i had prepared pi easy problems before the jury meeting. Each of these problems has a hardness between 0 and 49 (the higher the harder). Each judge also knows a very large (say infinite) number of hard problems (their hardness is 50). Judges need to select k problems to be used on the contest during this meeting.

    They start to propose problems in the ascending order of judges numbers. The first judge takes the first problem from his list of remaining easy problems (or a hard problem, if he has already proposed all his easy problems) and proposes it. The proposed problem is selected for the contest if its hardness is greater than or equal to the total hardness of the problems selected so far, otherwise it is considered too easy. Then the second judge does the same etc.; after the n-th judge, the first one proposes his next problem, and so on. This procedure is stopped immediately when k problems are selected. If all judges have proposed all their easy problems, but they still have selected less than k problems, then they take some hard problems to complete the problemset regardless of the total hardness. Your task is to calculate the total hardness of the problemset created by the judges.
    Input The first line of the input file contains the number of judges n (2 ≤ n ≤ 10) and the number of problems k (8 ≤ k ≤ 14). The i-th of the following n lines contains the description of the problems prepared by the i-th judge. It starts with pi (1 ≤ pi ≤ 10) followed by pi non negative integers between 0 and 49 — the hardnesses of the problems prepared by the i-th judge in the order they will be proposed.
    Output Output the only integer — the total hardness of the selected problems.
    Sample input and output
    3 8

    5 0 3 12 1 10

    4 1 1 23 20

    4 1 5 17 49

    94

    3 10

    2 1 3

    1 1

    2 2 5

    354
    In the first example, three problems with hardnesses of 0, 1, and 1 are selected first. Then the first judge proposes the problem with hardness 3 and it is selected, too. The problem proposed by the second judge with hardness 1 is not selected, because it is too easy. Then the problems proposed by the third, the first, and the second judges are selected (their hardnesses are 5, 12 and 23). The following three proposed problems with hardness of 17, 1 and 20 are not selected, and the problemset is completed with a problem proposed by the third judge with hardness of 49. So the total hardness of the problemset is 94.

    In the second example, three problems with hardnesses of 1, 1, and 2 are selected first. The second problem of the first judge (hardness 3) is too easy. The second judge is out of his easy problems, so he proposes a problem with hardness 50 and it is selected. The third judge’s problem with hardness 5 is not selected. The judges decide to take 6 more hard problems to complete the problemset, which gives the total hardness of 54 + 6 · 50 = 354.

    题意:n行,每行第一个数是pi,代表这一行有pi个数,一共取k个数,竖着取,要求是题目中的黑体字,所选取的数的总和不能超过要选的数,这个要选的数才能被选。

    题解:注意数据范围是0到49,没有的时添50,暴力跑,如果竖着选的时候发现没有数就选50,模拟下就行了。

    #include <iostream>
    #include <cstdio>
    #include <cmath>
    #include <cstring>
    using namespace std;
    int main()
    {
        freopen("easy.in","r",stdin);
        freopen("easy.out","w",stdout);
        int data[1005],a[15][15],cnt;
        int n,k;
        while(cin>>n>>k)
        {
            memset(a,-1,sizeof(a));
            memset(data,-1,sizeof(data));
            cnt=0;
            int maxlen=-1;
            for(int i=0;i<n;i++)
            {
                cin>>a[i][0];
                if(a[i][0]>maxlen)
                maxlen=a[i][0];
                for(int j=1;j<=a[i][0];j++)
                cin>>a[i][j];
            }
            for(int j=1;j<=maxlen;j++)
            {
                for(int i=0;i<n;i++)
                data[cnt++]=a[i][j];
            }
    //        for(int i=0;i<cnt;i++)
    //        cout<<data[i]<<" ";
            int num=0;
            int sum=0;
            for(int i=0;i<cnt;i++)
            {
                if(num==k)
                break;
                if(sum>=50)
                break;
                if(data[i]==-1&&sum<=50)
                break;
                if(sum<=data[i])
                {
                    sum+=data[i];
                    num++;
                }
            }
            if(num<k)
            sum=sum+(k-num)*50;
            cout<<sum<<endl;
        }
        return 0;
    }
  • 相关阅读:
    【python-leetcode142-快慢指针】环形链表2
    SpringMvc 拦截器
    什么是RESTful?RESTfule风格
    Http协议
    SpringMVC Mock测试
    Oracle 创建用户,赋予指定表名/视图只读权限
    添加junit和spring-test还是用不了@Test和@RunWith(SpringJUnit4ClassRunner.class)注解
    SpringMVC 数据交互
    SpringMvc commons-fileupload图片/文件上传
    SpringMvc 异常处理器
  • 原文地址:https://www.cnblogs.com/Ritchie/p/5727092.html
Copyright © 2020-2023  润新知