码迷,mamicode.com
首页 > 其他好文 > 详细

C2. Exam in BerSU (hard version)

时间:2019-06-21 12:46:28      阅读:91      评论:0      收藏:0      [点我收藏+]

标签:include   mes   printf   超过   names   一个   ORC   scan   div   

 

 

https://codeforces.com/contest/1185/problem/C2

题意:给你n个数字,从左往右有序,问对于每个数字来说,从左往右(到这个数字)取一些数字,如果取得数字一定要包括这个数字,且这些数字的累加和不能超过m,求对于每个数字来说,它最少落下几个数字没取。

思路:题目给的每个数字范围都是1~100,这个是突破口,我们可以开一个数组来记录每个数字出现的次数,那么对于每个数字只需要从左往右扫一遍这个数组,将较小的数字先取了,直到不能取为止。

#include<bits/stdc++.h>
using namespace std;
int book[105];
int main()
{

    int n,m;
    scanf("%d%d",&n,&m);
    for(int i=1; i<=n; i++)
    {
        int t;
        scanf("%d",&t);
        int ans=0;
        int man=0;
        int sum=m-t;
        for(int j=1; j<=100; j++)
        {
            int flag=min(sum/j,book[j]);
            man+=flag;
            sum-=flag*j;
        }
        book[t]++;
        printf("%d ",i-1-man);
    }

}

 

C2. Exam in BerSU (hard version)

标签:include   mes   printf   超过   names   一个   ORC   scan   div   

原文地址:https://www.cnblogs.com/dongdong25800/p/11063729.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!