hdu_1012(水题。。。不能再水)
Posted 有一天我们渺小的作为 或许 会巨大震动整个世界
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hdu_1012(水题。。。不能再水)相关的知识,希望对你有一定的参考价值。
1 #include<cstdio> 2 #include<cstring> 3 #include<algorithm> 4 #include<cmath> 5 using namespace std; 6 long long mp[10]; 7 double ans[10]; 8 void init(){ 9 mp[0] = mp[1] = 1; 10 for(int i = 2; i <= 9; i++){ 11 mp[i] = mp[i-1]*i; 12 } 13 ans[0] = 1.0; 14 ans[1] = 2.0; 15 ans[2] = 2.5; 16 for(int i = 3; i <= 9; i++){ 17 ans[i] = ans[i-1]+1.0/mp[i]; 18 } 19 } 20 int main() 21 { 22 init(); 23 printf("n e\n- -----------\n"); 24 printf("0 1\n1 2\n2 2.5\n"); 25 for(int i = 3; i <= 9; i++){ 26 printf("%d %.9lf\n",i,ans[i]); 27 } 28 return 0; 29 }
以上是关于hdu_1012(水题。。。不能再水)的主要内容,如果未能解决你的问题,请参考以下文章
hdu_2124 Flying to the Mars & hdu_1800 Repair the Wall 贪心水题