链接:https://www.nowcoder.com/acm/contest/145/J
来源:牛客网
Sudoku Subrectangles
时间限制:C/C++ 1秒,其他语言2秒
空间限制:C/C++ 32768K,其他语言65536K
Special Judge, 64bit IO Format: %lld
You have a n * m grid of characters, where each character is an English letter (lowercase or uppercase, which means there are a total of 52 different possible letters).
A nonempty subrectangle of the grid is called sudoku-like if for any row or column in the subrectangle, all the cells in it have distinct characters.
How many sudoku-like subrectangles of the grid are there?
The first line of input contains two space-separated integers n, m (1 ≤ n, m ≤ 1000). The next n lines contain m characters each, denoting the characters of the grid. Each character is an English letter (which can be either uppercase or lowercase).
Output a single integer, the number of sudoku-like subrectangles.
示例1
2 3 AaA caa
11
For simplicity, denote the j-th character on the i-th row as (i, j). For sample 1, there are 11 sudoku-like subrectangles. Denote a subrectangle by (x1, y1, x2, y2), where (x1, y1) and (x2, y2) are the upper-left and lower-right coordinates of the subrectangle. The sudoku-like subrectangles are (1, 1, 1, 1), (1, 2, 1, 2), (1, 3, 1, 3), (2, 1, 2, 1), (2, 2, 2, 2), (2, 3, 2, 3), (1, 1, 1, 2), (1, 2, 1, 3), (2, 1, 2, 2), (1, 1, 2, 1), (1, 3, 2, 3).
示例2
4 5 abcde fGhij klmno pqrst
150
For sample 2, the grid has 150 nonempty subrectangles, and all of them are sudoku-like.
题意:给你一个n*m的矩阵,填满大小写的英文字符,现在让你找有多少个“数独”矩阵,使得在这个矩阵上横向或者竖向上没有相同的字母(区分大小写)
#include
using namespace std;
#define ll long long
const int N=1010;
char s[N][N];
int n,m;
int pos[200],lmax[N][N],umax[N][N];// pos为离的最近的当前字符的位置
ll ans;//lmax表示从i行j列开始往左找可以找到的最长拥有各不相同的字符的长度,umax同理为向上
int len[60];//遍历一行行,len保存上一行处理的信息
void init(){
ans=0;
for(int i=1; i<=n; i++){
memset(pos,0,sizeof(pos));
for(int j=1; j<=m; j++){
lmax[i][j]=min(lmax[i][j-1]+1,j-pos[s[i][j]]);
pos[s[i][j]]=j;
}
}
for(int j=1; j<=m; j++){
memset(pos,0,sizeof(pos));
for(int i=1; i<=n; i++){
umax[i][j]=min(umax[i-1][j]+1,i-pos[s[i][j]]);
pos[s[i][j]]=i;
}
}
for(int r=1; r<=m; r++){
memset(len,0,sizeof(len));
for(int d=1; d<=n; d++){
for(int i=0; i
小菜鸟一枚,如果有哪里写的不对请指出。见谅。