C2. Exam in BerSU (hard version)
Posted dongdong25800
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C2. Exam in BerSU (hard version)相关的知识,希望对你有一定的参考价值。
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)的主要内容,如果未能解决你的问题,请参考以下文章
A. Arpa’s hard exam and Mehrdad’s naive cheat 1000 / 数论 找规律
Arpa’s hard exam and Mehrdad’s naive cheat CodeForces - 742A (大水题)
[Codeforces Round #622 (Div. 2)] - C2. Skyscrapers (hard version) (单调栈)
Codeforces--C2. Good Numbers (hard version)