博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HAZU校赛 Problem K: Deadline
阅读量:6824 次
发布时间:2019-06-26

本文共 1517 字,大约阅读时间需要 5 分钟。

Problem K: Deadline

Time Limit: 2 Sec Memory Limit: 1280 MB
Submit: 1106 Solved: 117
[Submit][Status][Web Board]
Description
There are N bugs to be repaired and some engineers whose abilities are roughly equal. And an engineer can repair a bug per day. Each bug has a deadline A[i].

Question: How many engineers can repair all bugs before those deadlines at least?  1<=n<= 1e6. 1<=a[i] <=1e9

Input

There are multiply test cases.

In each case, the first line is an integer N , indicates the number of bugs. The next line is n integers indicates the deadlines of those bugs.

Output

There are one number indicates the answer to the question in a line for each case.

Sample Input

4
1 2 3 4
Sample Output
1

这道题的意思就是每件事都有个deadline,你一天只能做一件事情,我肯定贪心,先做要先完成了事啊,这个需要的程序员最少,可是1e6恐怕会超时的,所以需要对数据进行预处理,大于n的肯定可以做完了,题解上讲可以O(n),用天数前缀和(s[i]-i+1)/i

#include 
using namespace std;const int MAXN = 1e6 + 5;int b[MAXN];int sum[MAXN];int main(){ int n; while (~scanf("%d", &n)) { int maxA,i,a; memset(b, 0, sizeof(b)); for (i = 0; i < n; ++i) { scanf("%d", &a); if (a > n) { continue; } ++b[a]; if (a > maxA) { maxA = a; } } sum[0] = 0; int ans = 1; for (i = 1; i <= maxA; ++i) { sum[i] = sum[i - 1] + b[i]; ans = max(ans, (sum[i] + i - 1) / i); } printf("%d\n", ans); } return 0;}

转载于:https://www.cnblogs.com/BobHuang/p/6775711.html

你可能感兴趣的文章
使用Coverage分析WSGI项目的代码覆盖率
查看>>
Linux 用户被差别对待?无法通过 apple.com 管理 Apple ID
查看>>
spring JdbcTemplate 在项目中的浅层(5个使用场景)封装 ...
查看>>
Kafka科普系列 | 轻松理解Kafka中的延时操作
查看>>
Python零基础学习笔记(二十九)—— OS模块
查看>>
MySQL8.0 - 新特性 - 通过SQL管理UNDO TABLESPACE
查看>>
函数计算实现 oss 上传超大 zip 压缩文件的自动解压处理 ...
查看>>
linux+xampp搭建WordPress个人网站过程详解
查看>>
JavaScript函数_函数作用域
查看>>
深度解析大快DKadoop大数据运维管理平台功能
查看>>
2019年深圳招揽VC/PE:新落户一次性最高奖励1500万 ...
查看>>
1月8日云栖精选夜读 | 克拉克拉:基于阿里云PAI实现渠道ROI投放预测系统 ...
查看>>
RTMP/RTSP直播播放器选择
查看>>
基于Spark的机器学习实践 (七) - 回归算法
查看>>
让你提高效率的 Linux 技巧
查看>>
企业级 SpringBoot 教程 (一)构建第一个SpringBoot工程
查看>>
阿里云有奖调查结果公布,赠送10个阿里巴巴logo胸针
查看>>
Golang学习笔记之WEB框架(gin)基本使用
查看>>
SAP人工智能服务Recast.AI的一个简单例子
查看>>
云栖科技评论90期:有两种“前沿科技”
查看>>