codeforces 609D D. Gadgets for dollars and pounds(二分+贪心)
题目链接:
D. Gadgets for dollars and pounds
2 seconds
256 megabytes
standard input
standard output
Nura wants to buy k gadgets. She has only s burles for that. She can buy each gadget for dollars or for pounds. So each gadget is selling only for some type of currency. The type of currency and the cost in that currency are not changing.
Nura can buy gadgets for n days. For each day you know the exchange rates of dollar and pound, so you know the cost of conversion burles to dollars or to pounds.
Each day (from 1 to n) Nura can buy some gadgets by current exchange rate. Each day she can buy any gadgets she wants, but each gadget can be bought no more than once during n days.
Help Nura to find the minimum day index when she will have k gadgets. Nura always pays with burles, which are converted according to the exchange rate of the purchase day. Nura can't buy dollars or pounds, she always stores only burles. Gadgets are numbered with integers from 1 to m in order of their appearing in input.
First line contains four integers n, m, k, s (1 ≤ n ≤ 2·105, 1 ≤ k ≤ m ≤ 2·105, 1 ≤ s ≤ 109) — number of days, total number and required number of gadgets, number of burles Nura has.
Second line contains n integers ai (1 ≤ ai ≤ 106) — the cost of one dollar in burles on i-th day.
Third line contains n integers bi (1 ≤ bi ≤ 106) — the cost of one pound in burles on i-th day.
Each of the next m lines contains two integers ti, ci (1 ≤ ti ≤ 2, 1 ≤ ci ≤ 106) — type of the gadget and it's cost. For the gadgets of the first type cost is specified in dollars. For the gadgets of the second type cost is specified in pounds.
If Nura can't buy k gadgets print the only line with the number -1.
Otherwise the first line should contain integer d — the minimum day index, when Nura will have k gadgets. On each of the next k lines print two integers qi, di — the number of gadget and the day gadget should be bought. All values qi should be different, but the valuesdi can coincide (so Nura can buy several gadgets at one day). The days are numbered from 1 to n.
In case there are multiple possible solutions, print any of them.
5 4 2 2
1 2 3 2 1
3 2 1 2 3
1 1
2 1
1 2
2 2
3
1 1
2 3
4 3 2 200
69 70 71 72
104 105 106 107
1 1
2 2
1 2
-1
4 3 1 1000000000
900000 910000 940000 990000
990000 999000 999900 999990
1 87654
2 76543
1 65432
-1 题意: 给了n天时间,每天的美元和英镑兑换这种货币的汇率,然后给了m种商品和s个这种货币,问买k种商品最少需要多少天;而且商品只能按美元或者英镑来买; 思路: 二分最少的天数,然后贪心要买的k件商品,(提前分好类和计算好前x个需要的英镑或者美元数),暴力枚举1类型和2类型的各多少个,换算成这种货币后看是否能买下来;
还有就是找到最小天数后再找一遍1类型和2类型多少个,在哪天买的自然是在汇率最小的那一天买啊; AC代码:
#include <bits/stdc++.h>
using namespace std;
const int N=2e5+;
typedef long long ll;
int n,m,k,s,ma[N],mb[N],ans,a[N],b[N],type,co;
ll suma[N],sumb[N];
struct node
{
friend bool operator< (node x,node y)
{
return x.num<y.num;
}
int num,pos;
};
node fa[N],fb[N];
int cnta=,cntb=;
int check(int x)
{
ll sum=;
for(int i=;i<cnta&&i<=k;i++)
{
if(k < i+cntb)
{
sum = suma[i]*(ll)a[ma[x]]+sumb[k-i]*(ll)b[mb[x]];//按汇率最少的时候算需要多少这种货币;
if(sum <= s)return ;
}
}
return ;
}
int bi()
{
int l = ,r = n,mid;
while(l <= r)
{
mid = (l+r)>>;
if(check(mid))l = mid+;//return 1表示全都不符合天数需要往后才能找到更小的汇率;
else r = mid-;
}
return l;//l-1表示的是最后一个不满足的天数,那么l天就是第一个满足的天数,也是最小的;
}
int main()
{
scanf("%d%d%d%d",&n,&m,&k,&s);
a[] = 1e6+,b[] = 1e6+;
for(int i = ;i <= n;i++)
{
scanf("%d",&a[i]);
if(a[ma[i-]] > a[i])ma[i] = i;//ma[i]记录的是前i天美元汇率最小的那天;mb[i]也是;
else ma[i] = ma[i-];
}
for(int i = ;i <= n;i++)
{
scanf("%d",&b[i]);
if(b[mb[i-]] > b[i])mb[i] = i;
else mb[i] = mb[i-];
}
for(int i = ;i <= m;i++)
{
scanf("%d%d",&type,&co);
if(type==)//分类
{
fa[cnta].num = co;
fa[cnta].pos = i;
cnta++;
}
else
{
fb[cntb].num = co;
fb[cntb].pos = i;
cntb++;
}
}
sort(fa+,fa+cnta);//分类后排序,方便后面贪心;
sort(fb+,fb+cntb);
suma[] = ;
sumb[] = ;
for(int i = ;i < cnta;i++)
{
suma[i] = suma[i-]+(ll)fa[i].num;//suma[i]表示前i个需要美元买的商品一共需要多少美元;
}
for(int i = ;i < cntb;i++)
{
sumb[i] = sumb[i-]+(ll)fb[i].num;
}
int fs = bi();
if(fs > n)printf("-1\n");
else
{
printf("%d\n",fs);
ll sum=;
for(int i=;i<cnta&&i<=k;i++)
{
if(k < i+cntb)
{
sum = suma[i]*(ll)a[ma[fs]]+sumb[k-i]*(ll)b[mb[fs]];
if(sum <= s)
{
ans = i;
break;
}
}
}
for(int i=;i<=ans;i++)
{
printf("%d %d\n",fa[i].pos,ma[fs]);
}
for(int i=;i<=k-ans;i++)
{
printf("%d %d\n",fb[i].pos,mb[fs]);
}
}
return ;
}
codeforces 609D D. Gadgets for dollars and pounds(二分+贪心)的更多相关文章
- Codeforces Educational Codeforces Round 3 D. Gadgets for dollars and pounds 二分,贪心
D. Gadgets for dollars and pounds 题目连接: http://www.codeforces.com/contest/609/problem/C Description ...
- Educational Codeforces Round 3 D. Gadgets for dollars and pounds 二分+前缀
D. Gadgets for dollars and pounds time limit per test 2 seconds memory limit per test 256 megabytes ...
- CF# Educational Codeforces Round 3 D. Gadgets for dollars and pounds
D. Gadgets for dollars and pounds time limit per test 2 seconds memory limit per test 256 megabytes ...
- Gadgets for dollars and pounds CodeForces - 609D
Nura wants to buy k gadgets. She has only sburles for that. She can buy each gadget for dollars or f ...
- CodeForces 609D Gadgets for dollars and pounds
二分天数+验证 #include<cstdio> #include<cstring> #include<cmath> #include<algorithm&g ...
- CodeForce---Educational Codeforces Round 3 D. Gadgets for dollars and pounds 正题
对于这题笔者无解,只有手抄一份正解过来了: 基本思想就是 : 二分答案,对于第x天,计算它最少的花费f(x),<=s就是可行的,这是一个单调的函数,所以可以二分. 对于f(x)的计算,我用了nl ...
- Codeforces 609D 被二分教做人
传送门:http://codeforces.com/problemset/problem/609/D (如需转载,请注明出处,谢谢O(∩_∩)O) 题意: Nura想买k个小玩意,她手上有 s 个bu ...
- Codeforces Gym 100231B Intervals 线段树+二分+贪心
Intervals 题目连接: http://codeforces.com/gym/100231/attachments Description 给你n个区间,告诉你每个区间内都有ci个数 然后你需要 ...
- Codeforces Round #370 (Div. 2)C. Memory and De-Evolution 贪心
地址:http://codeforces.com/problemset/problem/712/C 题目: C. Memory and De-Evolution time limit per test ...
随机推荐
- ubuntu 安装 rpm 软件包
1.首先安装alien和fakeroot这两个软件,alien可以将rpm转换为deb包.命令sudo apt-get install alien fakeroot 2.使用alien将rpm包转为d ...
- jquery实现图片的依次加载图片
css代码: ul#portfolio{margin:0;padding:0;} ul#portfolio li{float:left;margin:0 5px 0 0;width:250px;hei ...
- centos6.6安装mysql5.5
在mysql官网下载mysql-5.5.54-linux2.6-x86_64.tar.gz解压:tar -zxvf mysql-5.5.54-linux2.6-x86_64.tar.gz修改名字mv ...
- linux下robotframework执行测试用例的几种方法
1.执行指定的测试用例文件(Test Suite) [root@localhost cases]# pybot purge.txt 2.执行整个porject目录下的所有测试用例 ...
- vim 查找与替换
一.vim 查找 1. 正向查找 / 与 反向查找 ? 2. 退出查找 <Esc> 3. 跳转到下一处匹配 n ,跳转到上一处匹配 N 4. /<CR> 正向跳转到相同模式的下 ...
- 一些Python黑客脚本
[Github项目地址] https://github.com/threeworld/Python
- LinkedList 基本示例及源码解析
目录 一.JavaDoc 简介 二.LinkedList 继承接口和实现类介绍 三.LinkedList 基本方法介绍 四.LinkedList 基本方法使用 五.LinkedList 内部结构以及基 ...
- SVN 等版本管理工具
程序猿团队开发代码,必须的程序版本管理工具 1.SVN使用教程总结 2.SVN如何切换用户 在使用svn更新或提交数据时需要输入用户名和密码,在输入框中可以选择是否记录,以便下次操作无需再次输入用户名 ...
- erlang中字符编码转换(转)
转自:http://www.thinksaas.cn/group/topic/244329/ 功能说明: erlang中对各种语言的编码支持不足,此代码是使用erlang驱动了著名的iconv编码库来 ...
- JavaScript之this的工作原理
JavaScript 有一套完全不同于其它语言的对 this 的处理机制. 在五种不同的情况下 ,this 指向的各不相同. 1.全局范围内 当在全部范围内使用 this,它将会指向全局对象. 2.函 ...