码迷,mamicode.com
首页 > 其他好文 > 详细

POJ 3690 Constellations

时间:2020-07-10 13:13:24      阅读:51      评论:0      收藏:0      [点我收藏+]

标签:scan   strong   def   efi   org   oid   amp   mat   哈希   

gate

用时:60min,几乎全是照题解写的,所以没什么bug

题目大意:
给定一个\(N\times M\)的天空,\(T\)\(P*Q\)的星座,求有几个星座在天空中出现。
星空由 \(‘\ *\ ‘\)\(‘\ 0\ ‘\) 组成。
多组数据,\(1 \le N, M \le 1000, 1 \le T \le 100, 1 \le P, Q \le 50\)

二维哈希

......(恰完午饭再写)

注意:

定义函数void cal(char s[][maxn])的时候,如果写成char s[][]
就会出现declaration of ‘s‘ as multidimensional array must have bounds for all dimensions except the first
这是因为,IDE只允许数组的第一维未给定。
所以在定义表示星座的变量char b的时候,
尽管根据范围只需要b[100][50][50],但为了传入cal函数,还是要写成b[100][50][maxn]

\(code\)

#include<cstdio>
#include<iostream>
#include<cmath>
#include<cstring>
#include<set>
#define MogeKo qwq
using namespace std;

#define ull unsigned long long

const int maxn = 1005;
const ull B1 = 19260817;
const ull B2 = 20031101;

char a[maxn][maxn],b[105][55][maxn]; //55

int n,m,t,p,q,ans;
ull f[maxn][maxn],g[maxn][maxn];
ull base1[maxn],base2[maxn];

void init(){
    base1[0] = base2[0] = 1;
    for(int i = 1;i <= 1000;i++){
        base1[i] = base1[i-1] * B1;
        base2[i] = base2[i-1] * B2;
    }
}

void cal(char s[][maxn],int n,int m){
    for(int i = 0;i < n;i++){
        g[i][0] = s[i][0];
        for(int j = 1;j < q;j++)
            g[i][j] = g[i][j-1]*B1 + s[i][j];
        for(int j = q;j < m;j++)
            g[i][j] = g[i][j-1]*B1 + s[i][j] - s[i][j-q]*base1[q];
    }
    for(int j = 0;j < m;j++){ //j = q-1
        f[0][j] = g[0][j];
        for(int i = 1;i < p;i++)
            f[i][j] = f[i-1][j]*B2 + g[i][j];
        for(int i = p;i < n;i++)
            f[i][j] = f[i-1][j]*B2 + g[i][j] - g[i-p][j]*base2[p];
    }       
}

void solve(){
    ans = 0;
    multiset <ull> star;
    for(int i = 1;i <= t;i++){
        cal(b[i],p,q);
        star.insert(f[p-1][q-1]);
    }
    cal(a,n,m);
    for(int i = p-1;i < n;i++)
        for(int j = q-1;j < m;j++)
            star.erase(f[i][j]);
    ans = t-star.size();
}


int main(){
    init();
    for(int id = 1;;id++){
        scanf("%d%d%d%d%d",&n,&m,&t,&p,&q);
        if(!(n|m|t|p|q)) break;
        for(int i = 0;i < n;i++)
            scanf("%s",a[i]);
        for(int i = 1;i <= t;i++)
            for(int j = 0;j < p;j++)
                scanf("%s",b[i][j]);
        solve();
        printf("Case %d: %d\n",id,ans);
    }
    return 0;
}

POJ 3690 Constellations

标签:scan   strong   def   efi   org   oid   amp   mat   哈希   

原文地址:https://www.cnblogs.com/mogeko/p/13278517.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!