poj 2683 Ohgas' Fortune 利率计算
Posted yxysuanfa
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了poj 2683 Ohgas' Fortune 利率计算相关的知识,希望对你有一定的参考价值。
水题。
代码:
//poj 2683 //sep9 #include <iostream> using namespace std; int main() { int cases; scanf("%d",&cases); while(cases--){ int fund,year,op,ans=-1; scanf("%d%d%d",&fund,&year,&op); while(op--){ int A,B,flag,charge; double rate; scanf("%d%lf%d",&flag,&rate,&charge); A=fund; if(flag==1){ for(int i=0;i<year;++i){ B=(int)A*rate; A=A+B-charge; } }else{ int cumulative=0; for(int i=0;i<year;++i){ B=(int)A*rate; A-=charge; cumulative+=B; } A+=cumulative; } ans=max(ans,A); } printf("%d\n",ans); } return 0; }
以上是关于poj 2683 Ohgas' Fortune 利率计算的主要内容,如果未能解决你的问题,请参考以下文章
POJ 2480 Longge's problem 积性函数
poj 2480 Longge's problem 积性函数性质+欧拉函数