博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU-1903 Exchange Rates
阅读量:7108 次
发布时间:2019-06-28

本文共 2464 字,大约阅读时间需要 8 分钟。

Exchange Rates

Time Limit: 1000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)

Total Submission(s): 157    Accepted Submission(s): 89

Problem Description
Now that the Loonie is hovering about par with the Greenback, you have decided to use your $1000 entrance scholarship to engage in currency speculation. So you gaze into a crystal ball which predicts the closing exchange rate between Canadian and U.S. dollars for each of the next several days. On any given day, you can switch all of your money from Canadian to U.S. dollars, or vice versa, at the prevailing exchange rate, less a 3% commission, less any fraction of a cent. 
Assuming your crystal ball is correct, what's the maximum amount of money you can have, in Canadian dollars, when you're done? 
 

Input
The input contains a number of test cases, followed by a line containing 0. Each test case begins with 0 <d &#8804; 365, the number of days that your crystal ball can predict. d lines follow, giving the price of a U.S. dollar in Canadian dollars, as a real number. 
 

Output
For each test case, output a line giving the maximum amount of money, in Canadian dollars and cents, that it is possible to have at the end of the last prediction, assuming you may exchange money on any subset of the predicted days, in order. 
 

Sample Input
3 1.0500 0.9300 0.9900 2 1.0500 1.1000 0
 

Sample Output
1001.60 1000.00
 
  该题是一个简单的DP题,只需将每一天的最佳状态保留起来就可以了。动态方程是 dp[i][x] = Max( dp[i-1][x], dp[i-1][y] * 汇率 ), 其中的 i 代表天数,x, y 分别是0,1 代表美元和加拿大元。
  代码如下:
1 #include 
2 #include
3 #include
4 #include
5 using namespace std; 6 7 double dp[500][2]; 8 9 inline double Max( double x, double y ) 10 {
11 if( x - y > 1e-6 ) 12 return x; 13 return y; 14 } 15 16 inline double to( double m, double xx ) 17 {
18 return floor( m * xx * 0.97 * 100 ) / 100; 19 } 20 21 int main() 22 {
23 int N; 24 while( scanf( "%d", &N ), N ) 25 {
26 double xx; 27 memset( dp, 0, sizeof( dp ) ); 28 dp[0][1] = 1000.0; // 0号存储美元值,1号存储加元值 29 for( int i = 1; i <= N; ++i ) 30 {
31 scanf( "%lf", &xx ); 32 dp[i][0] = Max( dp[i-1][0], to( dp[i-1][1], 1.0 / xx ) ); 33 dp[i][1] = Max( dp[i-1][1], to( dp[i-1][0], xx ) ); 34 } 35 printf( "%.2lf\n", dp[N][1] ); 36 } 37 return 0; 38 }

  

转载地址:http://dsvhl.baihongyu.com/

你可能感兴趣的文章
python正则提取特定标签内的字符
查看>>
转:Android屏幕适配经验谈
查看>>
jquery ajax get post 的使用方法汇总
查看>>
50个必备的实用jQuery代码段
查看>>
网站安装打包 修改app.config[六]
查看>>
git 安装使用
查看>>
hive 分区表、桶表和外部表
查看>>
eclipse查看java方法域
查看>>
Linux系统究竟我要怎样学?
查看>>
正在学习linux的我写一封信给十年后的自己
查看>>
利用scp 远程上传下载文件/文件夹
查看>>
Windows下无窗口后台运行程序: ShellExecute
查看>>
读《美丽新世界》
查看>>
UIScrollView实现图片循环滚动
查看>>
我的友情链接
查看>>
王垠:怎样写一个解释器
查看>>
解决unicodedecodeerror ascii codec can’t decode byte 0xd7 in position 9 ordinal not in range(128)...
查看>>
Redis和Memcached的区别
查看>>
CSS选择器种类及介绍
查看>>
struts2 + form 表单上传文件
查看>>