码迷,mamicode.com
首页 > 其他好文 > 详细

XDOJ_1179_贪心

时间:2016-11-06 07:50:29      阅读:221      评论:0      收藏:0      [点我收藏+]

标签:for   开始   --   span   set   cst   algorithm   acm   code   

http://acm.xidian.edu.cn/problem.php?id=1179

 

先预处理一下,然后开始暴力就行了。

 

#include<iostream>
#include<cstring>
#include<cstdio>
#include<algorithm>
#define INF 0x3f3f3f3f
using namespace std;

int a[5005],ans[10000005] = {0},n,s,q;
int main()
{
    memset(ans,0x3f,sizeof(ans));
    scanf("%d%d",&n,&s);
    for(int i = 1;i <= n;i++)
    {
        scanf("%d",&a[i]);
        for(int j = 1;j <= s;j++)   ans[a[i]*j] = min(ans[a[i]*j],j);
    }

    scanf("%d",&q);
    while(q--)
    {
        int t,x = INF;
        scanf("%d",&t);
        for(int i = 1;i <= n;i++)
        {
            int endd = min(s,t/a[i]);
            for(int j = 1;j <= endd;j++)
            {
                int left = t-j*a[i];
                if(left == 0)   x = min(x,j);
                else if(ans[left] && ans[left]+j <= s)  x = min(x,ans[left]+j);
            }
        }
        if(x == INF)    printf("-1\n");
        else    printf("%d\n",x);
    }
    return 0;
}

 

XDOJ_1179_贪心

标签:for   开始   --   span   set   cst   algorithm   acm   code   

原文地址:http://www.cnblogs.com/zhurb/p/6034611.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!