【题目链接】:http://codeforces.com/problemset/problem/589/G

【题意】



有n个人;

每个人每天在开始工作之前,都需要di单位的准备时间,然后才能开始工作;

然后每个人都有m天的时间,每天有ti个单位的时间供每个人进行准备工作以及工作;

也就是说第i个人每天必须要先扣掉di个单位的时间;剩下的才是它能够工作的时间;

然后每个人都需要完成ri个单位的时间的工作量;

然后如果你发现某一天连准备的时间都不够的话,你可以跳过这一天;

问你最早在第几天,第i个人才能够完成ri个单位的时间的工作量;

【题解】



首先把m天的时间按照时间的多少降序排;

然后把n个人,按照ri的大小降序排;

然后顺序枚举n个人;

对于每个人,维护一个指针r,这里1..r对应了哪些天是>=d[i]的;

每次r递增一个,就把它加到树状数组里面,即对应的第id天递增t[i]个单位的时间,同时记录第id天之前有多少天是满足>=d[i]的;

然后二分第i天;

看看

前i天的时间和−前i天>=d[i]天的天数∗d[i]是不是大于等于r[i];

大于等于的话就变小一点,否则变大一点;



【Number Of WA】



0

(C++11不能编译,很奇怪)



【反思】



数据结构题的话,认真想想就好.

不要着急,想好了再动手。



【完整代码】

#include <bits/stdc++.h>
using namespace std;
#define lson l,m,rt<<1
#define rson m+1,r,rt<<1|1
#define LL long long
#define rep1(i,a,b) for (int i = a;i <= b;i++)
#define rep2(i,a,b) for (int i = a;i >= b;i--)
#define mp make_pair
#define pb push_back
#define fi first
#define se second
#define ms(x,y) memset(x,y,sizeof x)
#define Open() freopen("F:\\rush.txt","r",stdin)
#define Close() ios::sync_with_stdio(0) typedef pair<int,int> pii;
typedef pair<LL,LL> pll; const int dx[9] = {0,1,-1,0,0,-1,-1,1,1};
const int dy[9] = {0,0,0,-1,1,-1,1,-1,1};
const double pi = acos(-1.0);
const int M = 2e5; struct abc{
int t,id;
}; struct person{
int d,r,id;
}; struct BIT{
pll a[M+10]; int lowbit(int x){
return x&(-x);
} void add(int x,int y){
while (x <= M){
a[x].fi+=y;
a[x].se+=1;
x+=lowbit(x);
}
} LL sum1(int x){
LL temp = 0;
while (x > 0){
temp += a[x].fi;
x-=lowbit(x);
}
return temp;
} LL sum2(int x){
LL temp = 0;
while (x > 0){
temp += a[x].se;
x-=lowbit(x);
}
return temp;
}
}; int n,m,b[M+10];
abc a[M+10];
person c[M+10];
BIT d; int main(){
//Open();
Close();
cin >> n >> m;
rep1(i,1,m){
cin >> a[i].t;
a[i].id = i;
}
sort(a+1,a+1+m,[&] (abc a,abc b){ return a.t > b.t;});
rep1(i,1,n){
cin >> c[i].d >> c[i].r;
c[i].id = i;
}
sort(c+1,c+1+n,[&] (person a,person b) {return a.d > b.d;});
int cur = 1;
rep1(i,1,n){
while (cur<=m && a[cur].t>=c[i].d){
d.add(a[cur].id,a[cur].t);
cur++;
}
int l = 0,r = m,temp = 0;
while (l <= r){
int mid = (l+r)>>1;
LL temp1 = d.sum1(mid),temp2 = d.sum2(mid);
temp1-=temp2*c[i].d;
if (temp1 >= c[i].r){
temp = mid;
r = mid - 1;
}else {
l = mid + 1;
}
}
b[c[i].id] = temp;
}
rep1(i,1,n) cout << b[i] <<' ';
return 0;
}

【codeforces 589G】Hiring的更多相关文章

  1. 【codeforces 415D】Mashmokh and ACM(普通dp)

    [codeforces 415D]Mashmokh and ACM 题意:美丽数列定义:对于数列中的每一个i都满足:arr[i+1]%arr[i]==0 输入n,k(1<=n,k<=200 ...

  2. 【codeforces 707E】Garlands

    [题目链接]:http://codeforces.com/contest/707/problem/E [题意] 给你一个n*m的方阵; 里面有k个联通块; 这k个联通块,每个连通块里面都是灯; 给你q ...

  3. 【codeforces 707C】Pythagorean Triples

    [题目链接]:http://codeforces.com/contest/707/problem/C [题意] 给你一个数字n; 问你这个数字是不是某个三角形的一条边; 如果是让你输出另外两条边的大小 ...

  4. 【codeforces 709D】Recover the String

    [题目链接]:http://codeforces.com/problemset/problem/709/D [题意] 给你一个序列; 给出01子列和10子列和00子列以及11子列的个数; 然后让你输出 ...

  5. 【codeforces 709B】Checkpoints

    [题目链接]:http://codeforces.com/contest/709/problem/B [题意] 让你从起点开始走过n-1个点(至少n-1个) 问你最少走多远; [题解] 肯定不多走啊; ...

  6. 【codeforces 709C】Letters Cyclic Shift

    [题目链接]:http://codeforces.com/contest/709/problem/C [题意] 让你改变一个字符串的子集(连续的一段); ->这一段的每个字符的字母都变成之前的一 ...

  7. 【Codeforces 429D】 Tricky Function

    [题目链接] http://codeforces.com/problemset/problem/429/D [算法] 令Si = A1 + A2 + ... + Ai(A的前缀和) 则g(i,j) = ...

  8. 【Codeforces 670C】 Cinema

    [题目链接] http://codeforces.com/contest/670/problem/C [算法] 离散化 [代码] #include<bits/stdc++.h> using ...

  9. 【codeforces 515D】Drazil and Tiles

    [题目链接]:http://codeforces.com/contest/515/problem/D [题意] 给你一个n*m的格子; 然后让你用1*2的长方形去填格子的空缺; 如果有填满的方案且方案 ...

随机推荐

  1. 父类指针指向子类内存,为什么当父类的成员函数不加virtual时,访问的还是父类的成员函数,而不是子类同名的成员函数

    我认为是这样,类的成员函数都在代码区,不同的类的成员函数在代码区有自己的类名称空间限制,类的虚函数在虚函数表中,程序执行的时候,是先在虚函数表中找该成员函数,如果没有找到,就去该类在代码区的成员函数中 ...

  2. Mysql学习总结(33)——阿里云centos配置MySQL主从复制

    1.安装jdk1.8 首先确定没有安装过jdk 2.yum –y list java*查询系统自带的jdk安装包情况. 3.安装jdk1.8 4. 验证安装结果. 安装mysql 1. rpm -Uv ...

  3. HDU 3073 Saving Beans

    Saving Beans Time Limit: 3000ms Memory Limit: 32768KB This problem will be judged on HDU. Original I ...

  4. iOS给label加入下划线

    UILabel *myLabel = [[UILabelalloc] ,, , )]; NSMutableAttributedString *content = [[NSMutableAttribut ...

  5. 安卓ProgressBar水平进度条的颜色设置

    安卓系统提供了水平进度条ProgressBar的样式,而我们在实际开发中,差点儿不可能使用默认的样式.原因就是"太丑"^_^ 所以我们在很多其它的时候须要对其颜色进行自己定义,主要 ...

  6. 关于 折半查找 while 条件 &lt; , &lt;=

    int bin_search(int a[],int len,int key) { int low=0; int high=len-1; while(low<=high) //若为low< ...

  7. php设计模式之责任链模式

    php设计模式之责任链模式 实际问题 你的论坛有举报功能,版主能解决粗口方面的举报,警察能解决严重一点的黄赌毒方面的举报,更严重的反政府的举报就需要由国安局来完成. 职场中每个人都有直属的上级,如果到 ...

  8. elasticsearch如何安全重启

    elasticsearch如何安全重启节点 问题: elasticsearch集群,有时候可能需要修改配置,增加硬盘,扩展内存等操作,需要对节点进行维护升级.但是业务不能停,如果直接kill掉节 点, ...

  9. DB-MySQL:MySQL 运算符

    ylbtech-DB-MySQL:MySQL 运算符 MySQL 运算符 本章节我们主要介绍 MySQL 的运算符及运算符的优先级. MySQL 主要有以下几种运算符: 算术运算符 比较运算符 逻辑运 ...

  10. JavaScript中Math常用方法

    title: JavaScript中Math常用方法 toc: false date: 2018-10-13 12:19:31 Math.E --2.718281828459045,算数常量e Mat ...