【NOIP2010】【Luogu1190】接水问题(给定顺序的模拟)
【摘要】
problem
题意:
有n个人,每个人接水wi有m个水龙头,每个水龙头每秒供水1求n个人接完水要多少时间
注意:
人按编号1~n接水(坑点,顺序确定)换人过程没有浪费n < m 多余水龙头...
problem
题意:
- 有n个人,每个人接水wi
- 有m个水龙头,每个水龙头每秒供水1
- 求n个人接完水要多少时间
注意:
- 人按编号1~n接水(坑点,顺序确定)
- 换人过程没有浪费
- n < m 多余水龙头关闭
范围:
- n < 1e4, m < 1e3, wi < 100
solution
规则已经确定了啊,不是求最优解,就是模拟这个过程得到答案而已。
1、用小根堆q存储每个水龙头剩余时间,每次取出剩余最少的把他加上wi放回去。
2、最后小根堆中值最大的就是接水时间。
复杂度O(nlogn).
codes
#include<iostream>
#include<algorithm>
#include<queue>
using namespace std;
const int maxn = 110;
int n, m, a[maxn];
priority_queue<int,vector<int>,greater<int> >q;
int main(){
cin>>n>>m;
for(int i = 1; i <= n; i++){//因为顺序固定了
if(i <= m){//最少的是0,直接丢
int x; cin>>x; q.push(x);
}else{//取出最少的加进去
int x; cin>>x;
int t = q.top(); q.pop();
t += x;
q.push(t);
}
}
int ans = 0;
while(q.size()!=1)q.pop();
ans = q.top();
cout<<ans<<'\n';
return 0;
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
文章来源: gwj1314.blog.csdn.net,作者:小哈里,版权归原作者所有,如需转载,请联系作者。
原文链接:gwj1314.blog.csdn.net/article/details/81162512
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)