HDU 2050:折线分割平面(找规律,递推)

Posted xietx1995

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HDU 2050:折线分割平面(找规律,递推)相关的知识,希望对你有一定的参考价值。

题目地址:http://acm.hdu.edu.cn/showproblem.php?pid=2050

此题是有规律的: f(n)=2n2n+1

可以参考《具体数学》,即《Concrete Mathematics》1.2节

#include <iostream>
using namespace std;

int main()

    int cases, n;
    cin >> cases;
    while (cases--) 
        cin >> n;
        cout << 2 * n * n - n + 1 << endl;
    
    return 0;

以上是关于HDU 2050:折线分割平面(找规律,递推)的主要内容,如果未能解决你的问题,请参考以下文章

hdu2050 折线分割平面---递推

hdu 2050 折线分割平面(递推公式)

hdu 2050 折线分割平面 dp递推

HDU 2050(折线分割平面)

HDU - 2050 - 折线分割平面(数学 + dp)

HDU2050折线分割平面