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&#39; Fortune 利率计算的主要内容,如果未能解决你的问题,请参考以下文章

POJ 2480 Longge&#39;s problem 积性函数

poj 2480 Longge&#39;s problem 积性函数性质+欧拉函数

poj 2352 & Ural 1028 数星星 题解

BZOJ-1176&2683Mokia&简单题 CDQ分治

poj3320 Jessica's Reading Problem

POJ2533&&1836&&3176