Codeforces 1132D(二分答案+堆)

题面

传送门

分析

二分答案,考虑如何判定

可以用贪心的方法,每次找最快没电的电脑,在没电前1单位时间给它充电

正确性显然

实现上可以维护一个堆,存储每个电脑电用完的时刻,每次从堆顶取出最小的一个给它充电。设二分值为mid,对于每个电脑记录它的充电次数num[i],则没电的时间就是\(\lfloor \frac{a_i+num_i\times mid}{b_i} \rfloor+1\)

如果在维护堆的过程中发现当前时间已经超过某个电脑的没电时间,则返回false

代码

#include<iostream>
#include<cstdio>
#include<cstring>
#include<queue>
#define maxn 200005
using namespace std;
struct node{
    long long dtim;
    int id;
    node(){

    }
    node(int i,long long t){
        id=i;
        dtim=t;
    }
    friend bool operator < (node p,node q){
        return p.dtim>q.dtim;
    }
};
int n,k;
long long a[maxn],b[maxn];
long long num[maxn];
bool check(long long add){
    priority_queue<node>q;
    for(int i=1;i<=n;i++){
        q.push(node(i,a[i]/b[i]+1));
        num[i]=0;
    }
    for(int i=1;i<=k;i++){
        node now=q.top();
        q.pop();
        if(now.dtim<i) return 0;
        num[now.id]++;
        long long sum=a[now.id]+num[now.id]*add;
        q.push(node(now.id,sum/b[now.id]+1));
    }
    return 1;
}

int main(){
    scanf("%d %d",&n,&k);
    for(int i=1;i<=n;i++){
        scanf("%I64d",&a[i]);
    }
    for(int i=1;i<=n;i++){
        scanf("%I64d",&b[i]);
    }
    long long l=0,r=1e13,ans=-1,mid;
    while(l<=r){
        mid=(l+r)>>1;
        if(check(mid)){
            ans=mid;
            r=mid-1;
        }else l=mid+1;
    }
    printf("%I64d\n",ans);
}

原文地址:https://www.cnblogs.com/birchtree/p/10500287.html

时间: 2024-11-15 13:25:21

Codeforces 1132D(二分答案+堆)的相关文章

Codeforces 505E Mr. Kitayuta vs. Bamboos (贪心,二分答案,堆)

题目传送门 题意 有\(n\)根竹子,竹子\(i\)初始高度为\(h_i\),每天晚上会长高\(a_i\). 每天白天,你可以选择\(k\)根竹子(同一根竹子在同一个白天可以多次选择),把他们的高度减少\(p\),若竹子当前高度\(-p\)后\(<0\),则竹子高度变为\(0\). 最小化\(m\)天后最高的竹子的高度. 题解 首先最小化最大的...这种问题,显然可以用二分答案. 二分\(m\)天后最高的竹子的高度\(H\),然后问题就变成了判定性问题:是否存在一种方案,使得\(m\)天后竹子高

codeforces 359D 二分答案+RMQ

上学期刷过裸的RMQ模板题,不过那时候一直不理解>_< 其实RMQ很简单: 设f[i][j]表示从i开始的,长度为2^j的一段元素中的最小值or最大值 那么f[i][j]=min/max{d[i][j-1], d[i+2^j-1][j-1]} RMQ的ST算法: 1 void ST() //初始化 2 { 3 memset(RMQ,1,sizeof(RMQ)); 4 5 for(int i=1;i<=n;i++) 6 RMQ[i][0]=a[i]; 7 for(int j=1;(1<

Electric Charges CodeForces - 623C (二分答案)

大意: 平面上n个点每个点坐标为(x,0)或(0,y), 求任意两点距离平方最大值的最小值. 二分答案, 转化为判定最大值是否<=e, 按$x$排序后, 因为固定左端点, $y$绝对值的最大值是跟右端点单调的, 滑动一个长度平方不超过e的区间, 同时保证右端点$x$的绝对值不超过左端点, 这样对于左端点在$x$轴的情况一定是最优的, 同样再固定右端点倒序处理正半轴的情况. #include <iostream> #include <random> #include <a

Codeforces 772A Voltage Keepsake - 二分答案

You have n devices that you want to use simultaneously. The i-th device uses ai units of power per second. This usage is continuous. That is, in λ seconds, the device will use λ·ai units of power. The i-th device currently has bi units of power store

Codeforces 700A As Fast As Possible(二分答案)

[题目链接] http://codeforces.com/problemset/problem/700/A [题目大意] 有一辆限载k人速度为v2的车,n个步行速度均为v1的人要通过一段长度为l的距离,每个人只能上车一次,车可以来回走,问所有人到达目的地所需要的最短时间是多少 [题解] 因为车可以载k个人,所以,我们把人k个为一组分成(n+k-1)/k组,记为p吗,设需要的最短时间为t,每个人在车上待的时间为t2,那么可以列方程v1*(t-t2)+v2*t2=l,我们可以发现t2可以用t来表示,

Codeforces Round #425 (Div. 2) Problem C (Codeforces 832C) Strange Radiation - 二分答案 - 数论

n people are standing on a coordinate axis in points with positive integer coordinates strictly less than 106. For each person we know in which direction (left or right) he is facing, and his maximum speed. You can put a bomb in some point with non-n

Codeforces Round #417 (Div. 2) C. Sagheer and Nubian Market 二分答案 +排序

Codeforces Round #417 (Div. 2) C. Sagheer and Nubian Market 二分答案 +排序 题意 有 a[ i ] 个数 要求选最多的数 使其和不超过 S ,且在此情况下,和最小选最多数情况下 和最小 且 每个数有加成 如果选了 k个数 那么加成后 就是 a[ i ] + k*i ; 题解 二分mid 表示选了个数 加成一下,将加成以后结果排序一下 , 若前 mid数 和大于 s 则此方案不可行 PS 要用 long long ..... 还有 co

Codeforces 460C prsent(二分答案)

//题意:给定N朵花的原先的高度,从左到右排列, //最多浇水m天,每天只能浇一次,每次使得连续的w朵花的高度增长1,问最后最矮的花的高度最高是多少. # include <stdio.h> # include <algorithm> # include <string.h> using namespace std; int main() { __int64 n,m,w,l,r,i,m1,sum; __int64 a[200010],b[200010]; while(~

Educational Codeforces Round 21 Problem F (Codeforces 808F) - 最小割 - 二分答案

Digital collectible card games have become very popular recently. So Vova decided to try one of these. Vova has n cards in his collection. Each of these cards is characterised by its power pi, magic number ci and level li. Vova wants to build a deck