• 题解 POJ1191 【棋盘分割】


    题目链接:Link

    Problem

    Solution

    显然,我们可以发现,平均值和n都是确定的,因此就可以很愉快地区间dp了。
    O(170859375)好像过不了诶时间复杂度 $ O(8^5 * 15^2) $ 。
    一下为本题坑点:

    • 每次分割后,都会扔掉一半
    • POJ上double输出用"%f"!!!

    Code

    #include<cstdio>
    #include<cstring>
    #include<cmath>
    #include<algorithm>
    using namespace std;
    const int oo=0x3f3f3f3f;
    int n,a[20][20],s[20][20],vis[20][20][20][20][20];
    int f[20][20][20][20][20],tot;
    int dp(int R1,int C1,int R2,int C2,int tot)
    {
    	int &res=f[R1][C1][R2][C2][tot];
    	if(vis[R1][C1][R2][C2][tot]) return res;
    	vis[R1][C1][R2][C2][tot]=1;
    	if(tot>(R2-R1+1)*(C2-C1+1)) return res=oo;
    	if(tot==1)
    	{
    		double v=s[R2][C2]-s[R2][C1-1]-s[R1-1][C2]+s[R1-1][C1-1];
    		return res=v*v;
    	}
    	res=oo;
    	for(int R=R1;R<R2;R++)
    	{
    		int t=1;
    		res=min(res,dp(R1,C1,R,C2,t)+dp(R+1,C1,R2,C2,tot-t));
    		t=tot-1;
    		res=min(res,dp(R1,C1,R,C2,t)+dp(R+1,C1,R2,C2,tot-t));
    	}
    	for(int C=C1;C<C2;C++)
    	{
    		int t=1;
    		res=min(res,dp(R1,C1,R2,C,t)+dp(R1,C+1,R2,C2,tot-t));
    		t=tot-1;
    		res=min(res,dp(R1,C1,R2,C,t)+dp(R1,C+1,R2,C2,tot-t));
    	}
    	return res;
    }
    int main()
    {
    	#ifdef local
    	freopen("pro.in","r",stdin);
    	#endif
    	scanf("%d",&n);
    	for(int i=1;i<=8;i++) for(int j=1;j<=8;j++) { scanf("%d",&a[i][j]); tot+=a[i][j]; }
    	for(int i=1;i<=8;i++) for(int j=1;j<=8;j++) s[i][j]=s[i-1][j]+s[i][j-1]-s[i-1][j-1]+a[i][j];
    	double pj=(double)tot/n;
    	printf("%.3lf
    ",sqrt(((double)dp(1,1,8,8,n)-tot*pj)/n));
    	return 0;
    }
    
  • 相关阅读:
    像画笔一样慢慢画出Path的三种方法(补充第四种)
    占位符行为 PlaceHolderBehavior 的实现以及使用
    WPF实现物理效果 拉一个小球
    WPF实现Twitter按钮效果
    WPF自适应可关闭的TabControl 类似浏览器的标签页
    WPF仿百度Echarts人口迁移图
    WPF绘制简单常用的Path
    51Nod 1534 棋子游戏
    数论基础
    Buy a Ticket
  • 原文地址:https://www.cnblogs.com/happyZYM/p/11521245.html
Copyright © 2020-2023  润新知