HDU2050折线分割平面

Posted _Mashiro

tags:

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

Position

Solution

2×n^2-n+1

证明见分割问题

Code

// This file is made by YJinpeng,created by XuYike\'s black technology automatically.
// Copyright (C) 2016 ChangJun High School, Inc.
// I don\'t know what this program is.

#include <iostream>
#include <cstdio>
using namespace std;
int main()
{
    freopen("2050.in","r",stdin);
    freopen("2050.out","w",stdout);
    int n,t;scanf("%d",&t);
    while(t--)scanf("%d",&n),printf("%d\\n",2*n*n-n+1);
    return 0;
}

 

以上是关于HDU2050折线分割平面的主要内容,如果未能解决你的问题,请参考以下文章

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

HDU2050折线分割平面

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

hdu 2050.折线分割平面

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

hdu 2050 折线分割平面 dp递推