ACM
null_plf
这个作者很懒,什么都没留下…
展开
-
关于母函数的经典问题
题目链接#include //这是一个母函数问题 using namespace std; const int MAX=120; int q1[MAX+1],Result[MAX+1]; //这里我们采用A,B项拆括号得C, //然后c与后面的D构成新的A,B然后如此循环, //这里q1总表示前一项 int main(int argc, char *argv[]) { int n,i,...原创 2018-06-15 13:12:04 · 166 阅读 · 0 评论 -
贪心之猫鼠交易
题目链接#include<iostream>#include<algorithm>using namespace std;const int mMAX=1001;struct node{ double j,f,re;} a[mMAX];//比值的结果排序后应该与原始值一一对应,所以需要用structint cmp(const void *a,const ...原创 2018-06-15 13:14:16 · 291 阅读 · 0 评论 -
杭电acm 1012
//虽然这道题自己一次ac但是还是觉得acm的输出格式要特别注意#include<iostream>using namespace std;int jiecheng(int n){ if(n==1) return 1; else return n*jiecheng(n-1);}int main(){ int n=9; double res=1.0; cout...原创 2018-06-15 13:21:13 · 470 阅读 · 1 评论