CF253D Table with Letters - 2 优美枚举

2023-11-10 02:38

本文主要是介绍CF253D Table with Letters - 2 优美枚举,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

题目描述

Vasya has recently started to learn English. Now he needs to remember how to write English letters. He isn't sure about some of them, so he decided to train a little.

He found a sheet of squared paper and began writing arbitrary English letters there. In the end Vasya wrote nn lines containing mm characters each. Thus, he got a rectangular n×mn×m table, each cell of the table contained some English letter. Let's number the table rows from top to bottom with integers from 1 to nn , and columns — from left to right with integers from 1 to mm .

After that Vasya looked at the resulting rectangular table and wondered, how many subtables are there, that matches both following conditions:

  • the subtable contains at most kk cells with "a" letter;
  • all letters, located in all four corner cells of the subtable, are equal.

Formally, a subtable's definition is as follows. It is defined by four integers x_{1},y_{1},x_{2},y_{2}x1​,y1​,x2​,y2​ such that 1<=x_{1}<x_{2}<=n , 1<=y_{1}<y_{2}<=m . Then the subtable contains all such cells (x,y)(x,y) ( xx is the row number, yy is the column number), for which the following inequality holds x_{1}<=x<=x_{2},y_{1}<=y<=y_{2}x1​<=x<=x2​,y1​<=y<=y2​ . The corner cells of the table are cells (x_{1},y_{1})(x1​,y1​) , (x_{1},y_{2})(x1​,y2​) , (x_{2},y_{1})(x2​,y1​) , (x_{2},y_{2})(x2​,y2​) .

Vasya is already too tired after he's been writing letters to a piece of paper. That's why he asks you to count the value he is interested in.

输入格式

The first line contains three integers n,m,kn,m,k (2<=n,m<=400; 0<=k<=n·m) .

Next nn lines contain mm characters each — the given table. Each character of the table is a lowercase English letter.

输出格式

Print a single integer — the number of required subtables.

输入输出样例

输入 #1复制

3 4 4
aabb
baab
baab

输出 #1复制

2

输入 #2复制

4 5 1
ababa
ccaca
ccacb
cbabc

输出 #2复制

1

说明/提示

There are two suitable subtables in the first sample: the first one's upper left corner is cell (2,2)(2,2) and lower right corner is cell (3,3)(3,3) , the second one's upper left corner is cell (2,1)(2,1) and lower right corner is cell (3,4)(3,4) .


题意:

给你n*m的矩阵,统计满足一个矩阵四个角的字母相同,且满足a的个数<=k的子矩阵个数。

分析:

神级的优化枚举,固定枚举上行i和下行j,枚举左列和右列需要一定的技巧,我们依旧枚举从1到n枚举左列l,右列r从1开始,寻找可以满足的子矩阵,如果符合则就用num数组记录下来,如果不满足则r不变,l往下继续,注意要当前列消除num。

 

#include <bits/stdc++.h>
using namespace std;
#define ll long long
const int maxn=1e5+10;
char a[500][500];
int sum[500][500];//sum[i][j]代表 宽为i 长为j的矩阵中a的数量
int main()
{//freopen("input.txt", "r", stdin);//freopen("output.txt", "w", stdout);int n,m,k;scanf("%d%d%d",&n,&m,&k);for(int i=1; i<=n; i++)scanf("%s",a[i]+1);memset(sum,0,sizeof(sum));for(int i=1; i<=n; i++)for(int j=1; j<=m; j++){sum[i][j]=sum[i-1][j]+sum[i][j-1]-sum[i-1][j-1];if(a[i][j]=='a')sum[i][j]++;}ll ans=0;int num[300];//选取矩阵中各个字母的出现的对数for(int i=1; i<=n; i++){for(int j=i+1; j<=n; j++) //枚举矩阵的上边i和下边j{int r=1;//代表矩阵右边memset(num,0,sizeof(num));for(int l=1; l<=m; l++) //矩阵左边{if(a[i][l]!=a[j][l])continue;//不满足矩形四个点相同num[a[i][l]]--;while(r<=m&&sum[j][r]-sum[i-1][r]-sum[j][l-1]+sum[i-1][l-1]<=k){if(a[i][r]==a[j][r])num[a[i][r]]++;r++;//矩形满足a个数小于kk的要求,矩阵右边增大,直到不满足,那么增大左边k++}if(num[a[i][l]]>0)ans+=num[a[i][l]];//因为矩形左边固定,看右边满足四个点相同条件下有多少个这样的矩形}}}printf("%lld\n",ans);}
#include <bits/stdc++.h>
using namespace std;
typedef long long LL;
const int N=505;
int a[N][N];
char mp[N][N];
int num[400],sum[N][N];
int n,m,k; int get(int x1, int y1, int x2, int y2)
{return sum[x1][y1] - sum[x1][y2 - 1] - sum[x2 - 1][y1] + sum[x2 - 1][y2 - 1];
}
int init()
{for(int i = 1; i <= n; i++){for(int j = 1; j <= m; j++){sum[i][j] = sum[i][j-1] + sum[i-1][j] - sum[i-1][j-1] + a[i][j];}}
}
int main()
{freopen("input.txt","r",stdin);freopen("output.txt","w",stdout);scanf("%d%d%d",&n,&m,&k);for(int i=1; i<=n; i++){scanf("%s",mp[i]+1);for(int j=1; j<=m; j++){if(mp[i][j]=='a')a[i][j]=1;}}init();LL ans=0;for(int i=1; i<=n; i++){for(int j=i+1; j<=n; j++){int r=1;memset(num,0,sizeof(num));for(int l=1; l<=m; l++){if(mp[i][l]!=mp[j][l]){continue;}num[mp[i][l]]--;while(r<=m&&get(j,r,i,l)<=k){if(mp[i][r]==mp[j][r]){num[mp[i][r]]++;}r++;}if(num[mp[i][l]]>0)ans+=num[mp[i][l]];}}}printf("%lld",ans);//cout<<ans<<endl;return 0;
}

 

这篇关于CF253D Table with Letters - 2 优美枚举的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



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

相关文章

hdu 2489 (dfs枚举 + prim)

题意: 对于一棵顶点和边都有权值的树,使用下面的等式来计算Ratio 给定一个n 个顶点的完全图及它所有顶点和边的权值,找到一个该图含有m 个顶点的子图,并且让这个子图的Ratio 值在所有m 个顶点的树中最小。 解析: 因为数据量不大,先用dfs枚举搭配出m个子节点,算出点和,然后套个prim算出边和,每次比较大小即可。 dfs没有写好,A的老泪纵横。 错在把index在d

hdu 6198 dfs枚举找规律+矩阵乘法

number number number Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Problem Description We define a sequence  F : ⋅   F0=0,F1=1 ; ⋅   Fn=Fn

【Rust练习】12.枚举

练习题来自:https://practice-zh.course.rs/compound-types/enum.html 1 // 修复错误enum Number {Zero,One,Two,}enum Number1 {Zero = 0,One,Two,}// C语言风格的枚举定义enum Number2 {Zero = 0.0,One = 1.0,Two = 2.0,}fn m

枚举相关知识点

1.是用户定义的数据类型,为一组相关的常量赋予有意义的名字。 2.enum常量本身带有类型信息,即Weekday.SUN类型是Weekday,编译器会自动检查出类型错误,在编译期间可检查错误。 3.enum定义的枚举类有什么特点。         a.定义的enum类型总是继承自java.lang.Enum,且不能被继承,因为enum被编译器编译为final修饰的类。         b.只能定义

vue2实践:el-table实现由用户自己控制行数的动态表格

需求 项目中需要提供一个动态表单,如图: 当我点击添加时,便添加一行;点击右边的删除时,便删除这一行。 至少要有一行数据,但是没有上限。 思路 这种每一行的数据固定,但是不定行数的,很容易想到使用el-table来实现,它可以循环读取:data所绑定的数组,来生成行数据,不同的是: 1、table里面的每一个cell,需要放置一个input来支持用户编辑。 2、最后一列放置两个b

【C语言】结构体、枚举、联合体

【C语言】结构体、枚举、联合体 文章目录 @[TOC](文章目录) 前言一、结构体声明1.一般格式2.typedef 重命名结构体类型定义变量 二、结构体数组三、结构体与指针及函数传参四、结构体传参五.结构体在内存的存储六、参考文献总结 前言 使用工具: 1.编译器:VScode 2.C Primer Plus 第六版-1 提示:以下是本篇文章正文内容,下面案例可供参考

通过Ajax请求后台数据,返回JSONArray(JsonObject),页面(Jquery)以table的形式展示

点击“会商人员情况表”,弹出层,显示一个表格,如下图: 利用Ajax和Jquery和JSONArray和JsonObject来实现: 代码如下: 在hspersons.html中: <!DOCTYPE html><html><head><meta charset="UTF-8"><title>会商人员情况表</title><script type="text/javasc

UVa 10820 Send a Table (Farey数列欧拉函数求和)

这里先说一下欧拉函数的求法 先说一下筛选素数的方法 void Get_Prime(){ /*筛选素数法*/for(int i = 0; i < N; i++) vis[i] = 1;vis[0] = vis[1] = 0;for(int i = 2; i * i < N; i++)if(vis[i]){for(int j = i * i; j < N; j += i)vis[j] =

10730-Antiarithmetic?【暴力枚举】

水题 求一个序列是否存在3个数按顺序构成等差数列 直接枚举等差数列的差值 时间复杂度降到 n * n / 3 开pos数组记录每个值得为之 楷vis数组记录目前i是否出现过 强行AC 15221397 10730 Antiarithmetic? Accepted C++ 0.035 2015-03-26 12:09:56 #include<cstdio>#include

Java基础入门 【第七章 抽象、接口、内部类、枚举】(二)

匿名内部类书写格式: 父类或接口类型变量名=new父类或接口(构造方法实参列表){ //重写所有的抽象方法 @Override public返回值类型method1(形参列表){ 方法体实现 } @Override public返回值类型method2(形参列表){ 方法体实现 } //省略... }; //匿名内部类对象调用方法 变量名.重写方法(实参列表); 匿名