nyoj 130 同样的雪花 【哈希】

同样的雪花

时间限制:1000 ms  |  内存限制:65535 KB

难度:4

描写叙述
You may have heard that no two snowflakes are alike. Your task is to write a program to determine whether this is really true. Your
program will read information about a collection of snowflakes, and search for a pair that may be identical. Each snowflake has six arms. For each snowflake, your program will be provided with a measurement of the length of each of the six arms. Any pair of
snowflakes which have the same lengths of corresponding arms should be flagged by your program as possibly identical.

输入
The first line of the input will contain a single interger T(0<T<10),the number of the test cases.

The first line of every test case will contain a single integer n, 0 < n ≤ 100000, the number of snowflakes to follow. This will be followed by n lines, each describing a snowflake. Each snowflake will be described by a line containing six integers (each integer
is at least 0 and less than 10000000), the lengths of the arms of the snow ake. The lengths of the arms will be given in order around the snowflake (either clockwise or counterclockwise), but they may begin with any of the six arms. For example, the same snowflake
could be described as 1 2 3 4 5 6 or 4 3 2 1 6 5.

输出
For each test case,if all of the snowflakes are distinct, your program should print the message:

No two snowflakes are alike.

If there is a pair of possibly identical snow akes, your program should print the message:

Twin snowflakes found.

例子输入
1
2
1 2 3 4 5 6
4 3 2 1 6 5
例子输出
Twin snowflakes found.

题意:雪花有六个角,分别赋给他们长度,依照顺时针输入,问你在输入的雪花中有没有全然一样的.

分析:依照传统的做法时间是O(n^2),由于数据非常大所以说会超时,要换一种方法,要用到散列表(大神们讲的非常具体,我就现丑了)。

这道题的比較也蛮奇特的。

代码1(链表形式):

#include <cstdio>
#include <cstring>
#define M 20005
using namespace std;
struct node
{
	int a[6];
	struct node *next;
	/* data */
};
node *s[M];

int match(int *temp, int sum){
	int i, j;
	node *p; p = s[sum]->next;
	while(p){
		for(i = 0; i < 6; ++ i){
			for(j = 0; j < 6; ++ j){
				if(temp[j] != p->a[(i+j)%6]) break;
			}
			if(j == 6) return true;
			for(j = 0; j < 6; ++ j){
				if(temp[j] != p->a[(i+6-j)%6]) break;
			}
			if(j == 6) return true;
		}
		p = p->next;
	}
	p = new node;
	for(i = 0; i < 6; ++ i) p->a[i] = temp[i];
	p->next = s[sum]->next;
	s[sum]->next = p;
	return false;
}
int main(){
	int t, n, i, j, temp[6];
	scanf("%d", &t);
	while(t --){
		int sum,flag = 0;
		scanf("%d", &n);
		for(i = 0; i < M; ++ i){
			s[i] = new node; s[i]->next = NULL;
		}
		while(n --){
			sum = 0;
			for(i = 0; i < 6; ++i){
				scanf("%d", &temp[i]);
				sum += temp[i];
			}
			sum %= M;
			if(!flag){
				if(match(temp, sum)) flag = 1;
			}
		}
		if(flag) puts("Twin snowflakes found.");
		else puts("No two snowflakes are alike.");
	}
	return 0;
}        

代码2(三维数组):

#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;
#define M 20000
int s[M][100][6];
int len[M];

int match(int *a, int *b){
	int i, j, k;
	for(i = 0; i < 6; i ++){
		for(j = 0; j < 6; j ++){
			if(a[j] != b[(i+j)%6]) break;
		}
		if(j == 6) return true;
		for(j = 0; j < 6; j ++){
			if(a[j] != b[(i+6-j)%6]) break;
		}
		if(j == 6) return true;
	}
	return false;
}
int main(){
	int t, n, sum, temp[6];
	scanf("%d", &t);
	while(t --){
		int i, j, k, flag = 0;
		scanf("%d", &n);
		memset(len, 0, sizeof(int)*(M+1));
		while(n --){
			sum = 0;
			for(i = 0; i < 6; i ++){
				scanf("%d",&temp[i]);
				sum += temp[i];
			}
			sum %= M;
			for (i = 0; i < 6; ++i){
				s[sum][len[sum]][i] = temp[i];
			}
			++len[sum];
		}
		for(i = 0; i < M; i ++){
			if(len[i] >1)
			for(j = 0; j < len[i]-1; j ++){
				for(k = j+1; k < len[i]; k ++){
					if(match(s[i][j], s[i][k])){
						flag = 1;
						 break;
					}
				}
				if(flag) break;
			}
			if(flag) break;
		}
		if(flag) puts("Twin snowflakes found.");
		else puts("No two snowflakes are alike.");
	}
	return 0;
}
        
时间: 2024-10-16 19:31:46

nyoj 130 同样的雪花 【哈希】的相关文章

nyoj 130 相同的雪花 【哈希】

相同的雪花 时间限制:1000 ms  |  内存限制:65535 KB 难度:4 描述 You may have heard that no two snowflakes are alike. Your task is to write a program to determine whether this is really true. Your program will read information about a collection of snowflakes, and searc

AcWing - 137 - 雪花雪花雪花 = 哈希

https://www.acwing.com/problem/content/139/ #include<bits/stdc++.h> using namespace std; typedef long long ll; typedef unsigned long long ull; int a[20]; ull ha[20]; ull mod = 1e6 + 7; unordered_map<ull, vector<vector<int> > > m; b

ascii码所有字符对照表(包含汉字和外国文字)

http://www.0xaa55.com/thread-398-1-1.html看到了0xaa55的这个帖子,想起了2年前我在51cto发的一个帖子http://down.51cto.com/data/293635 [C] 纯文本查看 复制代码 01 #include <stdio.h>  02 void main( void ) 03 { 04     FILE *stream; 05     int i,j; 06     stream=fopen("ascii.txt&quo

PHP项目Docker化指南@KVM云技术社区分享

文章亮点 将PHP应用及其依赖的服务容器化步骤 如何将应用容器镜像的构建自动化 应用容器如何快速部署到测试环境和生产环境中 快速上手 PHP官方在 hub.docker.com 上维护了官方的PHP Docker镜像,包含了从PHP 5.5到7.0的多种不同版本的镜像. 我们将以PHP官方的Docker镜像为基础,介绍如何将一个简单的PHP应用Docker化. 创建一个新目录 php-quickstart,作为我们的项目目录 在项目目录下创建文件 app.php <?php  echo "

NYOJ 2356: 哈希计划【模拟】

题目描述 众所周知,LLM的算法之所以菜,就是因为成天打游戏,最近LLM突然想玩<金庸群侠传X>,结果进去后各种被虐,LLM就开始研究这个游戏的代码,顺便还学会了一点点点点lua语言,然后就开始了伟大的改游戏代码之旅,然后LLM发现自己too young了,这个游戏把所有的文本都进行了哈希,如果自己改了代码或者剧情文本的话它哈希出来的值就会和原来的哈希值不一样......然后游戏就会打不开.....,现在LLM发现了文本的哈希函数,要求你写个程序,功能为: 输入一段字符串,输出一个哈希值 为了

NYOJ 2356 哈希计划(模拟)

题目链接: http://acm.nyist.me/JudgeOnline/problem.php?id=2356 题目描述 众所周知,LLM的算法之所以菜,就是因为成天打游戏,最近LLM突然想玩<金庸群侠传X>,结果进去后各种被虐,LLM就开始研究这个游戏的代码,顺便还学会了一点点点点lua语言,然后就开始了伟大的改游戏代码之旅,然后LLM发现自己too young了,这个游戏把所有的文本都进行了哈希,如果自己改了代码或者剧情文本的话它哈希出来的值就会和原来的哈希值不一样......然后游戏

NYOJ 138 找球号(二)哈希表

找球号(二) 时间限制:1000 ms  |  内存限制:65535 KB 难度:5 描述 在某一国度里流行着一种游戏.游戏规则为:现有一堆球中,每个球上都有一个整数编号i(0<=i<=100000000),编号可重复,还有一个空箱子,现在有两种动作:一种是"ADD",表示向空箱子里放m(0<m<=100)个球,另一种是"QUERY",表示说出M(0<M<=100)个随机整数ki(0<=ki<=100000100),分

POJ - 3349 Snowflake Snow Snowflakes (哈希)

题意:给定n(0 < n ≤ 100000)个雪花,每个雪花有6个花瓣(花瓣具有一定的长度),问是否存在两个相同的雪花.若两个雪花以某个花瓣为起点顺时针或逆时针各花瓣长度依次相同,则认为两花瓣相同. 分析: 1.按雪花各花瓣长度之和对MOD取余哈希.对各雪花,算出哈希值,在哈希表中查询是否有与之相同的花瓣. 2.每个花瓣以某个花瓣为起点顺时针或逆时针共有12种表示方法. 3.注意哈希表中只需保存雪花输入时给定的那组长度值即可. 在哈希表中查询时,再算出该组长度值所对应的12种表示,并一一比较,若

POJ 3349-Snowflake Snow Snowflakes-字符串哈希

哈希后,对每片雪花对比6次. 1 #include <cstdio> 2 #include <cstring> 3 #include <vector> 4 #include <iostream> 5 #include <algorithm> 6 7 using namespace std; 8 9 const int maxn = 15010; 10 const int prime = 14997; 11 12 struct flake 13 {