首页 > 代码库 > XDOJ_1015_贪心
XDOJ_1015_贪心
http://acm.xidian.edu.cn/problem.php?id=1015
先排序,找出消耗最小,数值最大的数,得出最多的个数,然后从首开始替换成最大能替换的数。
#include<iostream>#include<algorithm>#include<cstring>#include<cstdio>using namespace std;struct aaa{ int num,w;}a[10];int w[10];bool cmp(aaa x,aaa y){ if(x.w == y.w) return x.num > y.num; return x.w < y.w;}int main(){ int n; while(~scanf("%d",&n)) { for(int i = 1;i <= 9;i++) a[i].num = i; for(int i = 1;i <= 9;i++) { scanf("%d",&a[i].w); w[i] = a[i].w; } sort(a+1,a+10,cmp); if(n < a[1].w) { printf("-1\n"); continue; } int cnt = n/a[1].w,temp = n%a[1].w,now = 9; while(n) { if(n < a[1].w) break; for(;temp+a[1].w < w[now];now--); if(temp+a[1].w >= w[now]) { printf("%d",now); n -= w[now]; temp = temp+a[1].w-w[now]; } else { printf("%d",a[1].w); n -= a[1].w; } } printf("\n"); } return 0;}
XDOJ_1015_贪心
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。