1. 程式人生 > >【哈希表】Ural Championship April 30, 2017 Problem H. Hamburgers

【哈希表】Ural Championship April 30, 2017 Problem H. Hamburgers

喜歡 直接 strong ear const ack 關鍵字 truct pen

題意:有n群人,每個人有喜歡的漢堡配方;有m家店,給出每家店的每個漢堡的配方,如果存在某個漢堡,其配料表包含某個人喜歡的配方,則這個人喜歡這個漢堡所在的店家。問你對每群人,輸出被喜歡的人數最多的店面是哪家。

直接把每家店所能滿足的口味表全塞到哈希表裏面,暴力枚舉統計即可。

這裏用了雙關鍵字哈希表,比較巧妙,是絕對的O(1)。

#include<cstdio>
#include<cstring>
#include<vector>
using namespace std;
struct Man{
	int S;
	bool like[1005];
	Man(const int &S){this->S=S;memset(like,0,sizeof(like));};
	Man(){};
};
typedef vector<Man>::iterator ITER;
//5000011
//4000037
vector<Man>v[1005];
int n,m;
int pp,st[2][3200033];
int b[1005];
struct HashTable
{
	bool a[5000011],b[4000037];
    HashTable(){}
    void clear(){
		for(int i=1;i<=pp;++i){
			a[st[0][i]]=b[st[1][i]]=0;
		}
		pp=0;
	}
    void insert(const int &V){
    	int U1=V%5000011;
    	a[U1]=1;
    	int U2=V%4000037;
    	b[U2]=1;
        st[0][++pp]=U1;
        st[1][pp]=U2;
    }
    bool find(const int &V){
    	return (a[V%5000011] && b[V%4000037]);
    }
}T;
char s[105];
int len,S;
void dfs(int cur,int dep,int Snow){
	if(dep!=0){
		T.insert(Snow);
	}
	for(int i=cur;i<len;++i){
		dfs(i+1,dep+1,Snow|(1<<(s[i]-‘a‘)));
	}
}
int main(){
//	freopen("h.in","r",stdin);
	int x;
	scanf("%d",&n);
	for(int i=1;i<=n;++i){
		scanf("%d",&x);
		for(int j=1;j<=x;++j){
			scanf("%s",s);
			len=strlen(s),S=0;
			for(int k=0;k<len;++k){
				S|=(1<<(s[k]-‘a‘));
			}
			v[i].push_back(Man(S));
		}
	}
	scanf("%d",&m);
	for(int i=1;i<=m;++i){
		scanf("%d",&x);
		for(int j=1;j<=x;++j){
			scanf("%s",s);
			len=strlen(s);
			dfs(0,0,0);
		}
		for(int j=1;j<=n;++j){
			for(ITER it=v[j].begin();it!=v[j].end();++it){
				if(T.find(it->S)){
					it->like[i]=1;
				}
			}
		}
		T.clear();
	}
	for(int i=1;i<=n;++i){
		memset(b,0,sizeof(b));
		for(ITER it=v[i].begin();it!=v[i].end();++it){
			for(int j=1;j<=m;++j){
				if(it->like[j]){
					++b[j];
				}
			}
		}
		int id=1;
		for(int j=2;j<=m;++j){
			if(b[j]>b[id]){
				id=j;
			}
		}
		printf("%d\n",id);
	}
	return 0;
}

【哈希表】Ural Championship April 30, 2017 Problem H. Hamburgers