Problem F

Marbles

Input: standard input

Output: standard output

I have some (say, n) marbles (small glass balls) and I am going to buy some boxes to store them. The boxes are of two types:

Type 1: each box costs c1 Taka and can hold exactly n1 marbles

Type 2: each box costs c2 Taka and can hold exactly n2 marbles

I want each of the used boxes to be filled to its capacity and also to minimize the total cost of buying them. Since I find it difficult for me to figure out how to distribute my marbles among the boxes, I seek your help. I want your program to be efficient also.

Input

The input file may contain multiple test cases. Each test case begins with a line containing the integer n (1 <= n <= 2,000,000,000). The second line contains c1 and n1, and the third line contains c2 and n2. Here, c1c2n1 and nare all positive integers having values smaller than 2,000,000,000.

A test case containing a zero for n in the first line terminates the input.

Output

For each test case in the input print a line containing the minimum cost solution (two nonnegative integers m1 and m2, where mi = number ofType i boxes required) if one exists, print "failed" otherwise.

If a solution exists, you may assume that it is unique.

 

Sample Input

43
1 3
2 4
40
5 9
5 12
0

 

Sample Output

13 1
failed

___________________________________________________________________

Rezaul Alam Chowdhury

“The easiest way to count cows in a grazing field is to count how many hooves are there and then divide it by four!”

题意很简单:ax+by=c; 求c1x+c2y的最小值。

首先要说一下两个函数的区别。

    floor(1.00001) = 1; floor(1.99999) = 1;

    ceil(1.00001) = 2; ceil(1.99999) =2;

    其实是对函数的取整的问题。

思路:当然,首先要判断是否有解,这个过程。。  g=gcd(a,b);

由于 x = x*c/g + k*(b/g);

y = y*c/g  - k*(a/g);  x>=0 && y>=0 ,因为不能能买负数个东西。

==> x*c/b <=k <=c*y/a;

   ok,这个就是k的取值范围。

这里就要用到一个问题,k是整数,如果取值才是合理的呢?

ceil(x*c/b)<=k<=floor(c*y/a);

这里不解释,1.24<=k<=4.25  ==> 2<=k<=4;?? enen .

现在k的范围求出来了,那么现在就是求对应的x,和y的值了。

有式子  c1x+c2y = c1*x+c2*(c-a*x)/b = c1*x - c2*a/b*x + c2*a/b;

就是化简成只有x的情况进行讨论。

我们只需要看c1*x - c2*a/b*x这一部分, x*(  c1-c2*a/b  )

当c1-c2*a/b<0的时候,x应该越到越好,这就可以根据已经求出的k来做了。

当c1-c2*a/b>0的时候,x应该越小越好。同理。

当c1-c2*a/b=0的时候,当然,就随意在前面一种情况里都是一样的。

code:

  1. #include<iostream>
  2. #include<stdio.h>
  3. #include<cstring>
  4. #include<cstdlib>
  5. #include<cmath>
  6. using namespace std;
  7. typedef long long LL;
  8.  
  9. LL Ex_GCD(LL a,LL b,LL &x,LL& y)
  10. {
  11. if(b==)
  12. {
  13. x=;
  14. y=;
  15. return a;
  16. }
  17. LL g=Ex_GCD(b,a%b,x,y);
  18. LL hxl=x-(a/b)*y;
  19. x=y;
  20. y=hxl;
  21. return g;
  22. }
  23. int main()
  24. {
  25. LL n,c1,n1,c2,n2;
  26. LL c,a,b,x,y,g;
  27. while(scanf("%lld",&n)>)
  28. {
  29. if(n==)break;
  30. scanf("%lld%lld",&c1,&n1);
  31. scanf("%lld%lld",&c2,&n2);
  32. a=n1;
  33. b=n2;
  34. c=n;
  35. g=Ex_GCD(a,b,x,y);
  36. if(c%g!=)
  37. {
  38. printf("failed\n");
  39. continue;
  40. }
  41. LL lowx =ceil ( -1.0*x*c/(double)b);
  42. LL upx = floor( c*y*1.0/(double)a );
  43. if(upx<lowx)
  44. {
  45. printf("failed\n");
  46. continue;
  47. }
  48. if(c1*b<=a*c2)/** x越大越好,就取上限值 */
  49. {
  50. x=x*(c/g)+upx*(b/g);
  51. y=y*(c/g)-upx*(a/g);
  52. }
  53. else
  54. {
  55. x=x*(c/g)+lowx*(b/g);
  56. y=y*(c/g)-lowx*(a/g);
  57. }
  58. printf("%lld %lld\n",x,y);
  59. }
  60. return ;
  61. }

uva 10090 Marbles的更多相关文章

  1. UVA 10090 - Marbles 拓展欧几里得

    I have some (say, n) marbles (small glass balls) and I am going to buy some boxes to store them. The ...

  2. UVA 10090 Marbles(扩展欧几里得)

    Marbles Input: standard input Output: standard output I have some (say, n) marbles (small glass ball ...

  3. UVA 10090 Marbles 扩展欧几里得

    来源:http://www.cnblogs.com/zxhl/p/5106678.html 大致题意:给你n个球,给你两种盒子.第一种盒子每个盒子c1美元,可以恰好装n1个球:第二种盒子每个盒子c2元 ...

  4. uva 10090 二元一次不定方程

    Marbles Input: standard input Output: standard output I have some (say, n) marbles (small glass ball ...

  5. (Step1-500题)UVaOJ+算法竞赛入门经典+挑战编程+USACO

    http://www.cnblogs.com/sxiszero/p/3618737.html 下面给出的题目共计560道,去掉重复的也有近500题,作为ACMer Training Step1,用1年 ...

  6. ACM训练计划step 1 [非原创]

    (Step1-500题)UVaOJ+算法竞赛入门经典+挑战编程+USACO 下面给出的题目共计560道,去掉重复的也有近500题,作为ACMer Training Step1,用1年到1年半年时间完成 ...

  7. 算法竞赛入门经典+挑战编程+USACO

    下面给出的题目共计560道,去掉重复的也有近500题,作为ACMer Training Step1,用1年到1年半年时间完成.打牢基础,厚积薄发. 一.UVaOJ http://uva.onlinej ...

  8. UVA 11125 Arrange Some Marbles

    dp[i][j][m][n][s]表示最初选择j个i号颜色大理石.当前选择n个m号颜色大理石.剩余大理石状态(8进制数状压表示)最开始没看出状压..sad #include <map> # ...

  9. uva 1354 Mobile Computing ——yhx

    aaarticlea/png;base64,iVBORw0KGgoAAAANSUhEUgAABGcAAANuCAYAAAC7f2QuAAAgAElEQVR4nOy9XUhjWbo3vu72RRgkF5

随机推荐

  1. 数据库性能之--ibatis cache应用

    (1)利用cache是提升性能的一个很重要方式!cacheModel节点定义了本映射文件中使用的Cache机制:<cacheModel id="userCache" type ...

  2. ShowMessage和MessageDlg消息对话框(VCL)

    ShowMessage一个简单的消息提示: 例如:ShowMessage("xxxx"); MessageDlg(constAnsiString Msg, TMsgDlgType ...

  3. 关于vptr指针初始化的分步

    vptr:一个具有虚函数类的对象所具有的隐藏的成员,指向该类的虚函数表. 父类对象的vptr指向是一直指向父类的.但子类的vptr指针最终是指向子类的, 当子类创建的时候,先调用父类构造函数,这个时候 ...

  4. spark小技巧-mapPartitions

    与map方法类似,map是对rdd中的每一个元素进行操作,而mapPartitions(foreachPartition)则是对rdd中的每个分区的迭代器进行操作.如果在map过程中需要频繁创建额外的 ...

  5. paper 47 :Latex中文显示(转)

    中文支持需要cjk-latex,总得来说中文可以使用GB和GBK两种字体,GBK需要从windows下copy *.ttc或*.ttf, GB字体则在linux下就用. 先说支持GB的中文显示,安装以 ...

  6. logstash5.x改变

    5.x版本 logstash中 elasticsearch插件的workers,无法配置大于1,会提示 This plugin uses the shared and doesn't need thi ...

  7. 20道C#练习题(二)11——20题

    11.一个游戏,前20关是每一关自身的分数,1-30关每一关是10分,31-40关,每一关是20分,1-49关,每一关是30分,第50关是100分,输入你现在闯到的关卡数,求你现在拥有的分数.利用if ...

  8. NOIP200407合唱队形+最长上升子序列O(n^2)详解

    合唱队形解题报告 2016-05-12   4:30——6:45 NOIP200407合唱队形 难度级别:A: 运行时间限制:1000ms: 运行空间限制:256000KB: 代码长度限制:20000 ...

  9. OpenStack 的防火墙规则流程

    Contents [hide] 1 发现的问题 2 解决过程 3 删除临时错误数据 4 其实前面的解决办法是错的 发现的问题 3台虚拟机在同一宿主机,防火墙配置都一样,但是他们的网络表现不一致,有的能 ...

  10. LoadRunner11下载以及详细破解说明【最新】

    Loadrunner11破解所需两个dll文件以及自动删除注册表工具,使用方法见附件readme.也可安装网上的办法,手动删除注册表项. 下载破解文件lm70.dll和mlr5lprg.dll lm7 ...