Codeforces 799D. Field expansion 【DP】

D. Field expansion
time limit per test1 second
memory limit per test256 megabytes
inputstandard input
outputstandard output
In one of the games Arkady is fond of the game process happens on a rectangular field. In the game process Arkady can buy extensions for his field, each extension enlarges one of the field sizes in a particular number of times. Formally, there are n extensions, the i-th of them multiplies the width or the length (by Arkady's choice) by ai. Each extension can't be used more than once, the extensions can be used in any order.

Now Arkady's field has size h × w. He wants to enlarge it so that it is possible to place a rectangle of size a × b on it (along the width or along the length, with sides parallel to the field sides). Find the minimum number of extensions needed to reach Arkady's goal.

Input
The first line contains five integers a, b, h, w and n (1 ≤ a, b, h, w, n ≤ 100000) — the sizes of the rectangle needed to be placed, the initial sizes of the field and the number of available extensions.

The second line contains n integers a1, a2, ..., an (2 ≤ ai ≤ 100000), where ai equals the integer a side multiplies by when the i-th extension is applied.

Output
Print the minimum number of extensions needed to reach Arkady's goal. If it is not possible to place the rectangle on the field with all extensions, print -1. If the rectangle can be placed on the initial field, print 0.

Examples
input
3 3 2 4 4
2 5 4 10
output
1
input
3 3 3 3 5
2 3 5 4 2
output
0
input
5 5 1 2 3
2 2 3
output
-1
input
3 4 1 1 3
2 3 2
output
3
Note
In the first example it is enough to use any of the extensions available. For example, we can enlarge h in 5 times using the second extension. Then h becomes equal 10 and it is now possible to place the rectangle on the field.

log2(1e5)<1734
extensionwh234,TLE


法①: DP
d[i][j]=k:使iextensionw=jhk
d[i][j]=max(d[i1][j]a[i],d[i1][j/a[i]])
d[0][w]=h,d[0][other]=0
ab,i<=34O(n)


法②: 枚举
log2(1e5)<17,log3(1e5)<11
2extension,O(222),w,h,log2(ah)log2(bw)2


DP代码

#include<stdio.h>
#include <iostream>
#include<stdlib.h>
#include<algorithm>
#include<vector>
#include<deque>
#include<map>
#include<set>
#include<queue>
#include<math.h>
#include<string.h>
#include<string>

using namespace std;
#define ll long long
#define pii pair<int,int>

const int inf = 1e9 + 7;

const int N = 1e5+5;

int ext[N];
ll d[N];

int slove(int a,int b,int w,int h,int n){
    if((w>=a&&h>=b)||(w>=b&&h>=a)){
        return 0;
    }
    sort(ext,ext+n,greater<int>());
    fill(d,d+N,0);
    d[w]=h;
    for(int i=0,ed=min(34,n);i<ed;++i){
        ll x=ext[i];
        for(int j=N-3;j>=0;--j){
            ll w=j*x,h=d[j];
            if((w>=a&&h>=b)||(w>=b&&h>=a)){
                return i+1;
            }
            if(j*x<N){
                d[j*x]=max(d[j*x],d[j]);
            }
            d[j]=max(d[j],d[j]*ext[i]);
            w=j,h=d[j];
            if((w>=a&&h>=b)||(w>=b&&h>=a)){
                return i+1;
            }
        }
    }
    return -1;
}

int main()
{
    //freopen("/home/lu/Documents/r.txt","r",stdin);
    //freopen("/home/lu/Documents/w.txt","w",stdout);
    int a,b,h,w,n;
    while(~scanf("%d%d%d%d%d",&a,&b,&h,&w,&n)){
        for(int i=0;i<n;++i){
            scanf("%d",&ext[i]);
        }
        printf("%d\n",slove(a,b,h,w,n));
    }
    return 0;
}
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值