#642 (Div. 3)C. Board Moves(递推)

探讨了在奇数尺寸的方阵上,如何通过最少步骤将所有图形集中到一个单元格的问题。提供了详细的分析过程及高效算法实现,利用递推公式解决了大规模数据集的计算需求。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

题目描述

You are given a board of size n×n, where n is odd (not divisible by 2). Initially, each cell of the board contains one figure.
In one move, you can select exactly one figure presented in some cell and move it to one of the cells sharing a side or a corner with the current cell, i.e. from the cell (i,j) you can move the figure to cells:
(i−1,j−1);
(i−1,j);
(i−1,j+1);
(i,j−1);
(i,j+1);
(i+1,j−1);
(i+1,j);
(i+1,j+1);
Of course, you can not move figures to cells out of the board. It is allowed that after a move there will be several figures in one cell.
Your task is to find the minimum number of moves needed to get all the figures into one cell (i.e. n2−1 cells should contain 0 figures and one cell should contain n2 figures).
You have to answer t independent test cases.

Input

The first line of the input contains one integer t (1≤t≤200) — the number of test cases. Then t test cases follow.
The only line of the test case contains one integer n (1≤n<5⋅105) — the size of the board. It is guaranteed that n is odd (not divisible by 2).
It is guaranteed that the sum of n over all test cases does not exceed 5⋅105 (∑n≤5⋅105).

Output

For each test case print the answer — the minimum number of moves needed to get all the figures into one cell.

Example

input
3
1
5
499993
output
0
40
41664916690999888

题目大意

给你一个n*n的方阵,n肯定为奇数。每个方阵上有一个图形,问:最少需要多少步,把所有的图形集中在一个图形上。可以斜着走

题目分析

n=3时
1 1 1
1 0 1
1 1 1
答案为:f[i]=8 * 1=8
n=5时
2 2 2 2 2
2 1 1 1 2
2 1 0 1 2
2 1 1 1 2
2 2 2 2 2
答案为:f[i]=+f[i-2]+8 * 2 * 2=40

由此可以推出:f[i]=f[i-2]+(i/2)*(i/2)*8
这样就得到了递推式。

代码如下
#include <iostream>
#include <cstdio>
#include <cmath>
#include <string>
#include <cstring>
#include <stack>
#include <map>
#include <unordered_map>
#include <queue>
#include <vector>
#include <set> 
#include <algorithm>
#include <iomanip>
#define LL long long
using namespace std;
int const N=5e5+5;
LL f[N];
void init()     //预处理出答案
{
	for(int i=3;i<N;i+=2)
	f[i]=f[i-2]+(LL)(i/2)*(i/2)*8;   //(i/2)*(i/2)*8可能会爆int
}
int main()
{
	init();
	int t;
	cin>>t;
	while(t--)
	{
		int n;
		cin>>n;
		cout<<f[n]<<endl;
	}
	return 0;
}
### 关于 `urllib3.packages.six.moves` 的使用说明 `six` 是一个支持 Python 2 和 Python 3 兼容性的库,而 `moves` 子模块用于处理那些在两个版本之间移动或重命名的标准库模块。当开发者希望编写兼容这两个主要版本的代码时,可以利用 `six.moves` 来访问这些被迁移的功能。 对于 `urllib3.packages.six.moves` 而言,在某些情况下,特别是第三方包可能嵌入了自己的 `six` 副本而不是依赖全局安装的一个副本。这通常是为了避免不同项目之间的版本冲突[^1]。 #### 解决 PyInstaller 打包过程中遇到的问题 如果在使用 PyInstaller 进行打包的过程中遇到了类似于 "pre-safe-import-module hook failed" 错误,则可能是由于环境中的某些依赖关系不一致所引起的。一种常见的解决方法是尝试更新 `urllib3` 到最新版本: ```bash pip3 uninstall urllib3 -y --cert root.pem pip3 install --no-cache-dir -U urllib3 ``` 上述命令会先卸载现有的 `urllib3` 安装,再重新安装最新的稳定版,并且通过指定证书来确保安全连接[^2]。 #### 处理与 `pip._vendor.urllib3.packages.six.moves` 相关的问题 有时可能会看到类似 “No module named ‘pip._vendor.urllib3.packages.six.moves’” 的错误提示。这是因为 `pip` 自身也包含了 `urllib3` 及其依赖项作为内部组件的一部分。因此,修改外部环境中对应的软件包并不会直接影响到 `pip` 内部使用的那一套。要修复这类问题,建议升级整个 `pip` 工具链至最新版本[^3]。 #### 应对特定应用内的冲突情况 有报告指出,像 Vulmap 这样的应用程序在其源码中有硬编码路径指向 `&#39;thirdparty.urllib3.packages.six.moves&#39;`,从而引发了与其他工具(如 `pip`)间的潜在冲突。针对这种情况的最佳实践是从根本上解决问题——即联系该应用程序的支持团队获取官方补丁或是自行调整相关部分以适应当前的工作环境配置[^4]。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

lwz_159

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值