TOJ1373_多项式规律

Posted HANCAO

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了TOJ1373_多项式规律相关的知识,希望对你有一定的参考价值。

技术分享
#include<iostream>
#include<iomanip>
using namespace std;

double seq(int n)
{
    double s = 0.0;
    for (int i = 1;i <= n;i++)
    {
        if (i % 2 == 0)
            s -= 1.0 / i;
        else
            s += 1.0 / i;
    }
    return s;
}

int main()
{
    int n,m;
    double arr[1000] = { 0.0 };
    
    while (cin >> m)
    {
        for (int i = 1;i <= 1000;i++)
        {
            arr[i] = seq(i);
        }
        for (int j = 1;j <=m;j++)
        {
            cin >> n;
            cout << setiosflags(ios::fixed) << setprecision(2) << arr[n] << endl;
        }
    }
    return 0;
}
View Code

wrong answer的原因n值可取1000个。

 

新的方法:先将所有可能的值赋值给数组s[i] (通常是通过主函数调用的功能函数),然后通过输入特定值(数组项)输出结果。

以上是关于TOJ1373_多项式规律的主要内容,如果未能解决你的问题,请参考以下文章

TOJ 3600Fibonacci II (对数+斐波那契通项式)

TOJ_12470

luogu_1373 小a和uim之大逃离

动态规划_二项式系数

[luogu1373]小a和uim之大逃离_dp

ZZNUOJ_用C语言编写程序实现1373:连续的n个1(附完整源码)