HDU 2050 分割问题

简介:

有结论







根据公式就可以。

#include <iostream>
using namespace std;
int main()
{
    int t;long long n;
    cin>>t;
    while(t--)
        cin>>n,cout<<2*n*n-n+1<<endl;
    return 0;
}


目录
相关文章
|
6月前
|
算法
LeetCode算法题---最长回文子串、N 字形变换(四)
LeetCode算法题---最长回文子串、N 字形变换(四)
41 0
|
21天前
lanqiao OJ 644 方格分割
lanqiao OJ 644 方格分割
15 1
|
SQL Shell
HDU-4348 To the moon(主席树区间修改 永久化标记)
HDU-4348 To the moon(主席树区间修改 永久化标记)
138 0
HDU-4348 To the moon(主席树区间修改 永久化标记)
【CCCC】L3-008 喊山 (30分),BFS搜索最长路,水题
【CCCC】L3-008 喊山 (30分),BFS搜索最长路,水题
106 0
[POJ | Nowcoder] Watchcow | 欧拉回路 点路径输出
Description Bessie’s been appointed the new watch-cow for the farm. Every night, it’s her job to walk across the farm and make sure that no evildoers are doing any evil. She begins at the barn, makes her patrol, and then returns to the barn when she’s done.
163 0
|
机器学习/深度学习 BI
题解 P1436 【棋盘分割】
题目链接 其实呢大致思路和下面的大佬们都很像。发这篇题解的目的就是加了一点~~优化~~骗分技巧。转移方程:设$dp[i][j][x][y][k]$表示左上$(i,j)$,右下$(x,y)$,第$k$次割的最大面积。
1059 0