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 ...
随机推荐
- asp.net母版-页脚制作
1.母版创建流程略过 2.创建母版页css:Site.css body{ } .linkButton{ text-decoration:none; color:whitesmoke; } 3.母版页添 ...
- VueJS自定义过滤器:new Vue({filters:{filter1:function(){}....}})
Vue.js 允许你自定义过滤器,被用作一些常见的文本格式化. 语法 <!-- 在两个大括号中 --> {{ message | capitalize }} <!-- 在 v-bin ...
- C# 嵌入dll 动软代码生成器基础使用 系统缓存全解析 .NET开发中的事务处理大比拼 C#之数据类型学习 【基于EF Core的Code First模式的DotNetCore快速开发框架】完成对DB First代码生成的支持 基于EF Core的Code First模式的DotNetCore快速开发框架 【懒人有道】在asp.net core中实现程序集注入
C# 嵌入dll 在很多时候我们在生成C#exe文件时,如果在工程里调用了dll文件时,那么如果不加以处理的话在生成的exe文件运行时需要连同这个dll一起转移,相比于一个单独干净的exe,这种形 ...
- 工作总结 a标签 <a href="/meetingtheme">Back to List</a> 返回上一级 指向 控制器 默认Index @Html.ActionLink("Edit59", "Edit", new { id = item.ID }) 默认当前控制器
@Html.ActionLink("Back to List", "Index") ---- <a href="/doctorinfo&qu ...
- Allegro Desgin Compare的用法与网表比较
转:Allegro Desgin Compare的用法与网表比较 Allegro中自带有Design Compare工具,利用它可以比较明了的看到线路的差异.当然也可以通过SKILL进行比较,不过我们 ...
- USB协议[转]__总结得很好
一 枚举过程:◆ 用户将一个USB设备插入USB端口,主机为端口供电,设备此时处于上电状态.◆主机检测设备.◆集线器使用中断通道将事件报告给主机.◆主机发送Get_Port_Status(读端口状态) ...
- msgsnd的一个小问题
今天写了一个System V消息队列的小样例.定义了一个例如以下的结构体: #define MSG_SIZE 8192 struct request { long mtype; int client_ ...
- EventListener中的handleEvent
在研究代码时发现类似这样一段代码: function TEST() {} TEST.prototype = { init:function() { window.addEventListener('m ...
- canvas drawImage方法不显示图片的解决方案
先复习一下用法: context.drawImage(img,sx,sy,swidth,sheight,x,y,width,height); 各个参数说明: 参数 描述 img 规定要使用的图像.画布 ...
- ios开发之猜数字游戏
// // main.m // 猜数 // #import <Foundation/Foundation.h> #import "Guess.h" int main(i ...