记录编号 578440 评测结果 AAAAAAAAAAAAAAAAAAAA
题目名称 [POJ 3349]雪色雪花雪余痕 最终得分 100
用户昵称 Gravatarムラサメ 是否通过 通过
代码语言 C++ 运行时间 0.855 s
提交时间 2023-03-17 10:14:54 内存使用 4.47 MiB
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
int n,tot,snow[100010][6],head[100010],nxt[100010];
int H(int *a){
	int sum=0,mul=1;
	for(int i=0;i<6;i++){
		sum=(sum+a[i])%99991;
		mul=(long long)mul*a[i]%99991;
	}
	return (sum+mul)%99991;
}
bool equal(int *a,int *b){
	for(int i=0;i<6;i++){
		for(int j=0;j<6;j++){
			bool eq=1;
			for(int k=0;k<6;k++){
				if(a[(i+k)%6]!=b[(j+k)%6]){
					eq=0;
				}
			}
			if(eq){
				return 1;
			}
			eq=1;
			for(int k=0;k<6;k++){
				if(a[(i+k)%6]!=b[(j-k+6)%6]){
					eq=0;
				}
			}
			if(eq){
				return 1;
			}
		}
	}
	return 0;
}
bool insert(int *a){
	int val=H(a);
	for(int i=head[val];i;i=nxt[i]){
		if(equal(snow[i],a)){
			return 1;
		}
	}
	++tot;
	memcpy(snow[tot],a,6*sizeof(int));
	nxt[tot]=head[val];
	head[val]=tot;
	return 0;
}
int main(){
	freopen("snowflake.in","r",stdin);
	freopen("snowflake.out","w",stdout);
	ios::sync_with_stdio(0);
	cin.tie(0);
	cout.tie(0);
	cin>>n;
	for(int i=1;i<=n;i++){
		int a[10];
		for(int j=0;j<6;j++){
			cin>>a[j];
		}
		if(insert(a)){
			cout<<"Twin snowflakes found."<<endl;
			return 0;
		}
	}
	cout<<"No two snowflakes are alike."<<endl;
    return 0;
}