hdu4618Palindrome Sub-Array(乱搞)

2023-11-20 19:18

本文主要是介绍hdu4618Palindrome Sub-Array(乱搞),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

多校联赛第二场1008

结题报告上竟然给的是乱搞二字。

题意:从矩阵中找最大的正方形子矩阵使得每行每列的数字是符合回文。输出最大的边长。

1、动归

  状态;dp[i][j][k]表示以(I,j)为左上角坐标点且边长为k的子矩阵是否符合回文。

状态转移:dp[i][j][k] = 1 (如果dp[i-1][j-1][k-2]==1&&外围的四条边上的数字符合回文, 否则dp[i][j][k]=0)

dp[i-1][j-1][k-2]就是dp[i][j][k]的内层的小矩阵,为了使得dp[i][j][k]表示的矩阵符合条件,则小矩阵符合回文是状态转移的一个重要条件,

代码如下:

#include <cstdio>
#include <cstring>
#define M 310
int a[M][M];
bool dp[M][M][M];
int is_ok(int x, int y, int k)//验证外围的四条边是否回文
{for(int i = y, j = y+k-1; i < j; i++, j--)if(a[x][i]!=a[x][j]) return 0;for(int i = y, j = y+k-1; i < j; i++, j--)if(a[x+k-1][i]!=a[x+k-1][j]) return 0;for(int i = x, j = x+k-1; i < j; i++, j--)if(a[i][y]!=a[j][y]) return 0;for(int i = x, j = x+k-1; i < j; i++, j--)if(a[i][y+k-1]!=a[j][y+k-1]) return 0;return 1;
}
int main ()
{int t, n, m;scanf("%d",&t);while(t--){memset(dp,0,sizeof(dp));scanf("%d %d",&n,&m);for(int i = 1; i <= n; i++)for(int j = 1; j <= m; j++){scanf("%d",&a[i][j]);dp[i][j][0] = 1;dp[i][j][1] = 1;}int len = n>m?m:n;int ans = 1;for(int k = 2; k <= len; k++)for(int i = 1; i+k-1 <= n; i++)for(int j = 1; j+k-1 <= m; j++){if(dp[i+1][j+1][k-2]&&is_ok(i,j,k)){dp[i][j][k] = 1;if(ans<k) ans = k;}}printf("%d\n",ans);}return 0;
}

2、暴力

就是对于边长从大到小的暴力即可l

代码如下:

#include <cstdio>
#define M 310
int a[M][M];
int ok(int x, int y, int k)
{for(int i = x; i-x<k; i++)for(int j = y, l = y+k-1; j < l; j++, l--)if(a[i][j]!=a[i][l])return 0;return 1;
}
int main ()
{int t, m, n;scanf("%d",&t);while(t--){scanf("%d %d",&n, &m);for(int i = 1; i <= n; i++)for(int j = 1; j <= m; j++)scanf("%d",&a[i][j]);int len = n>m?m:n;int ans, f = 1;for(int k = len; f&&k >= 1; k--)for(int i = 1; f&&i+k-1 <= n; i++)for(int j = 1; f&&j+k-1 <= m; j++)if(ok(i, j, k)) {ans = k; f = 0;}printf("%d\n",ans);}return 0;
}


这篇关于hdu4618Palindrome Sub-Array(乱搞)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/396834

相关文章

【uva】11536-Smallest Sub-Array(区间移动问题)

一个区间移动的问题,1A了,感觉没什么好说的。。 13975926 11536 Smallest Sub-Array Accepted C++ 0.809 2014-08-01 11:00:20 #include<cstdio>#include<cstring>#include<iostream>using namespace std;#define INF 1 << 30

leetCode#448. Find All Numbers Disappeared in an Array

Description Given an array of integers where 1 ≤ a[i] ≤ n (n = size of array), some elements appear twice and others appear once. Find all the elements of [1, n] inclusive that do not appear in this

做一个问卷考试,标准答案对比用户填写的答案,array_diff 进行差集比对

if( empty(array_diff($answer_mark, $answer)) && empty(array_diff( $answer,$answer_mark))){//用户答题正确}else{// 答题错误} 做一个问卷考试,标准答案对比用户填写的答案,array_diff  进行差集比对   如用户填写的答案变量为answer   标准答案为answer_mark

出现 E: Sub-process /usr/bin/dpkg returned an error code (1) 解决方法 (全面分析)

目录 前言1. 问题所示2. 原理分析2.1 第一阶段2.2 第二阶段 3. 解决方法4. 彩蛋4.1 错误不提示,直接卸载4.2 卸载后还是无错误提示 前言 3年前遇到过一个类似的,但是轻松解决,推荐阅读:ubuntu:E: dpkg was interrupted, you must manually run ‘sudo dpkg --configure…解决方法 这回发

[LeetCode] 238. Product of Array Except Self

题:https://leetcode.com/problems/product-of-array-except-self/description/ 题目 Given an array nums of n integers where n > 1, return an array output such that output[i] is equal to the product of all

[LeetCode] 215. Kth Largest Element in an Array

题:https://leetcode.com/problems/kth-largest-element-in-an-array/description/ 题目 Find the kth largest element in an unsorted array. Note that it is the kth largest element in the sorted order, not th

MyBatis - 使用foreach迭代List/Array的说明

在 MyBatis 中的 foreach 元素,主要用于迭代 集合数据 以动态生成执行语句;主要有 item、index、collection、open、separator、close 等属性 属性说明         collection:要迭代的数据集对象,必填项         item:迭代出的元素的别名,必填项         index:元素的序号(map时为k

LeetCode - 33. Search in Rotated Sorted Array

33. Search in Rotated Sorted Array  Problem's Link  ---------------------------------------------------------------------------- Mean:  给你一个数组,这个数组是由两个有序的数组拼接成的(无重复元素),在这个数组中查找元素k的下标. anal

[置顶]后缀数组(suffix array)详解

写在前面 在字符串处理当中,后缀树和后缀数组都是非常有力的工具。 其中后缀树大家了解得比较多,关于后缀数组则很少见于国内的资料。 其实后缀数组是后缀树的一个非常精巧的替代品,它比后缀树容易编程实现, 能够实现后缀树的很多功能而时间复杂度也不太逊色,并且,它比后缀树所占用的空间小很多。 可以说,在信息学竞赛中后缀数组比后缀树要更为实用! 因此在本文中笔者想介绍一下后缀数组的基本概念、构造

【CodeForces】266E More Queries to Array... 线段树

E. More Queries to Array... time limit per test 5 seconds memory limit per test 256 megabytes input standard input output standard output You've got an array, consisting of n