codeforces_734C_二分

本文介绍了一个游戏中的特殊挑战,玩家需要准备一定数量的药剂来通关。通过使用特定的道具和技能,玩家可以减少制作药剂所需的时间。文章讨论了如何在给定条件下,利用这些技能和道具以最短时间完成任务。
C. Anton and Making Potions
time limit per test
4 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Anton is playing a very interesting computer game, but now he is stuck at one of the levels. To pass to the next level he has to prepare n potions.

Anton has a special kettle, that can prepare one potions in x seconds. Also, he knows spells of two types that can faster the process of preparing potions.

  1. Spells of this type speed up the preparation time of one potion. There are m spells of this type, the i-th of them costs bi manapoints and changes the preparation time of each potion to ai instead of x.
  2. Spells of this type immediately prepare some number of potions. There are k such spells, the i-th of them costsdi manapoints and instantly create ci potions.

Anton can use no more than one spell of the first type and no more than one spell of the second type, and the total number of manapoints spent should not exceed s. Consider that all spells are used instantly and right before Anton starts to prepare potions.

Anton wants to get to the next level as fast as possible, so he is interested in the minimum number of time he needs to spent in order to prepare at least n potions.

Input

The first line of the input contains three integers nmk (1 ≤ n ≤ 2·10^9, 1 ≤ m, k ≤ 2·10^5) — the number of potions, Anton has to make, the number of spells of the first type and the number of spells of the second type.

The second line of the input contains two integers x and s (2 ≤ x ≤ 2·10^9, 1 ≤ s ≤ 2·10^9) — the initial number of seconds required to prepare one potion and the number of manapoints Anton can use.

The third line contains m integers ai (1 ≤ ai < x) — the number of seconds it will take to prepare one potion if the i-th spell of the first type is used.

The fourth line contains m integers bi (1 ≤ bi ≤ 2·10^9) — the number of manapoints to use the i-th spell of the first type.

There are k integers ci (1 ≤ ci ≤ n) in the fifth line — the number of potions that will be immediately created if the i-th spell of the second type is used. It's guaranteed that ci are not decreasing, i.e. ci ≤ cj if i < j.

The sixth line contains k integers di (1 ≤ di ≤ 2·10^9) — the number of manapoints required to use the i-th spell of the second type. It's guaranteed that di are not decreasing, i.e. di ≤ dj if i < j.

Output

Print one integer — the minimum time one has to spent in order to prepare n potions.

Examples
input
20 3 2
10 99
2 4 3
20 10 40
4 15
10 80
output
20
input
20 3 2
10 99
2 4 3
200 100 400
4 15
100 800
output
200

题意:要制造n个物品,制造一个需要x分钟,一共s的技能点,有两种技能,第一种使制造每一个的时间变为指定值,
第二种瞬间制造指定个数物品,两种技能消耗指定的技能点,每种技能只能用一次。问最短多久能完成任务。

思路:最短时间为:t*(n-w)。找到它的最小值,枚举第一种技能求出t,因为第二种技能是有序的,
可以二分查找剩余技能点能使用的w最大的技能。

注意:有可能不用第一种技能,只用第二种技能。

#include<iostream>
#include<cstdio>
#include<cstring>
using namespace std;
#define N 200005
#define LL long long
#define INF (4*1e18+5)
struct One
{
    int cost,time;
} one[N];

struct Two
{
    int cost,num;
} two[N];

int k;
int Find(int x)
{
    int l=0,r=k-1,res=0;
    while(l<=r)
    {
        int mid=(l+r)>>1;
        if(two[mid].cost>x)
            r=mid-1;
        else
        {
            l=mid+1;
            res=two[mid].num;
        }
    }
    return res;
}

int main()
{
    int n,m,x,s;
    scanf("%d%d%d%d%d",&n,&m,&k,&x,&s);
    for(int i=0; i<m; i++)
        scanf("%d",&one[i].time);
    for(int i=0; i<m; i++)
        scanf("%d",&one[i].cost);
    for(int i=0; i<k; i++)
        scanf("%d",&two[i].num);
    for(int i=0; i<k; i++)
        scanf("%d",&two[i].cost);
    LL res=x*(LL)(n-Find(s));    //这里特别注意,做的时候这里出错,只用第二种技能或者都不用
   LL time=x,mana=s; for(int i=0; i<m; i++) { time=x,mana=s; if(one[i].cost<=s) { time=one[i].time; mana=s-one[i].cost; } int red=Find(mana); // cout<<mana<<" "<<red<<endl; res=min((LL)time*(n-red),res); } printf("%I64d\n",res); return 0; }

 

 

转载于:https://www.cnblogs.com/jasonlixuetao/p/6081843.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值