【字符矩阵哈希】bzoj2351 [BeiJing2011]Matrix

引用题解:http://blog.csdn.net/popoqqq/article/details/41084047

#include<cstdio>
#include<cstring>
using namespace std;
typedef unsigned long long ull;
int n,m,a,b,q;
const ull seed1=17,seed2=19;
#define MOD 1000001
ull v[MOD],sum[1001][1001],ord[201],pow1[1001],pow2[1001];
char s[1001][1001];
int first[MOD],next[MOD],en;
void Insert(const ull &V)
{
	int U=(int)(V%MOD);
	v[en]=V;
	next[en]=first[U];
	first[U]=en++;
}
int main()
{
	scanf("%d%d%d%d",&n,&m,&a,&b);
	memset(first,-1,sizeof(first));
	ord[‘0‘]=1,ord[‘1‘]=2;
	for(int i=1;i<=n;++i)
	  scanf("%s",s[i]+1);
	for(int i=1;i<=n;++i)
	  for(int j=1;j<=m;++j)
	    sum[i][j]=ord[s[i][j]]+sum[i-1][j]*seed1;
	for(int i=1;i<=n;++i)
	  for(int j=1;j<=m;++j)
	    sum[i][j]+=sum[i][j-1]*seed2;
	pow1[0]=pow2[0]=1;
    for(int i=1;i<=n;i++) pow1[i]=pow1[i-1]*seed1;
    for(int i=1;i<=m;i++) pow2[i]=pow2[i-1]*seed2;
    for(int i=a;i<=m;i++)
	  for(int j=b;j<=n;j++)
	    Insert(sum[i][j]
		-sum[i-a][j]*pow1[a]
		-sum[i][j-b]*pow2[b]
		+sum[i-a][j-b]*pow1[a]*pow2[b]);
	scanf("%d",&q);
	for(;q;--q)
      {
        for(int i=1;i<=a;i++) scanf("%s",s[i]+1);
        for(int i=1;i<=a;i++)
          for(int j=1;j<=b;j++)
            sum[i][j]=ord[s[i][j]]+sum[i-1][j]*seed1;
        for(int i=1;i<=a;i++)
          for(int j=1;j<=b;j++)
            sum[i][j]+=sum[i][j-1]*seed2;
        int o=(int)(sum[a][b]%MOD);
        for(int i=first[o];i!=-1;i=next[i]) if(v[i]==sum[a][b]) {puts("1"); goto OUT;}
        puts("0"); OUT:;
      }
	return 0;
}
时间: 2024-10-15 12:14:10

【字符矩阵哈希】bzoj2351 [BeiJing2011]Matrix的相关文章

BZOJ2351: [BeiJing2011]Matrix

2351: [BeiJing2011]Matrix Time Limit: 20 Sec  Memory Limit: 128 MBSubmit: 589  Solved: 171[Submit][Status] Description 给定一个M行N列的01矩阵,以及Q个A行B列的01矩阵,你需要求出这Q个矩阵哪些在原矩阵中出现过. 所谓01矩阵,就是矩阵中所有元素不是0就是1. Input 输入文件的第一行为M.N.A.B,参见题目描述. 接下来M行,每行N个字符,非0即1,描述原矩阵. 接

UVA 11019 字符矩阵哈希

思路:以前没做过字符矩阵的哈希,所以这题是看别人博客写的. #pragma comment(linker, "/STACK:1024000000,1024000000") #include<iostream> #include<cstdio> #include<cstring> #include<algorithm> #include<map> #include<queue> #include<set>

【字符矩阵哈希】【二分答案】【哈希表】bzoj1567 [JSOI2008]Blue Mary的战役地图

引用题解:http://hzwer.com/5153.html 当然,二分可以换成哈希表. #include<cstdio> #include<iostream> #include<cstring> using namespace std; #define MOD 2501 typedef unsigned long long ull; const ull seed1=3659,seed2=1789; ull sum[51][51],sum2[51][51],v[MOD

poj 3690 字符矩阵匹配----HASH算法

http://poj.org/problem?id=3690 UVA还有一道也是这样的题,LRJ给的算法是AC自动机----我还没写过,今天用HASH搞了这道题 思路很清晰,但是处理起来还因为HASH函数写混WA了几次... 文本矩阵n*m    T个匹配矩阵p*q 思路: 1.把每一行处理出长为q的hash值 2.对于1中得到的p个哈希值在算一次哈希,这样就把一个矩阵用一个hash值替代了 3.把所有的匹配矩阵压入multiset,然后对于文本矩阵的每一个p*q的子矩阵,算出矩阵哈希值,从mu

矩阵乘法 --- hdu 4920 : Matrix multiplication

Matrix multiplication Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 131072/131072 K (Java/Others)Total Submission(s): 820    Accepted Submission(s): 328 Problem Description Given two matrices A and B of size n×n, find the product of them. b

字符矩阵的旋转 镜面对称 1.2.2

字符矩阵顺时针旋转90度的时候, 行变成列, 列变成行. 镜面对称不是很难直接上测试代码: #include <cstdio> #include <cstring> #include <algorithm> #include <iostream> using namespace std; char mata[100][100], matb[100][100]; int N, M; //N行M列 void rot90(char mata[][100]) { c

POJ--2158--------------Milking Grid(最小覆盖字符矩阵)---(开二维kmp)

Milking Grid Time Limit: 3000MS   Memory Limit: 65536K Total Submissions: 6169   Accepted: 2573 Description Every morning when they are milked, the Farmer John's cows form a rectangular grid that is R (1 <= R <= 10,000) rows by C (1 <= C <= 75

UVA 11019(Matrix Matcher-vector从迭代器中取值,AC自动机匹配字符矩阵)

Problem H Matrix Matcher Input: Standard Input Output: Standard Output Given an N * M matrix, your task is to find the number of occurences of an X * Y pattern. Input The first line contains a single integer t(t ≤ 15), the number of test cases. For e

如何建立英文字符的哈希表

经常会遇到需要建立字符串哈希表的问题,例如strtok,或者删除指定字符串的中一些字符等等,可见的字符有256个,那么很容易想到建立一个哈希表,但是其中有一些技巧,可以节省空间,其实可以使用bitmap的形式实现,但是c语言中没有现成的东西,所以需要自己实现.下面就是实现方式: char hash[32] = {0}; do { hash[*str >> 3] |= (1 << (*str & 7)); }while(*str++) 以上就建立了一个可以容纳256个字符的h