POJ3349 Snowflake Snow Snowflakes

Time Limit: 4000MS   Memory Limit: 65536K
Total Submissions: 39075   Accepted: 10232

Description

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.

Input

The first line of input 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.

Output

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.

Sample Input

2
1 2 3 4 5 6
4 3 2 1 6 5

Sample Output

Twin snowflakes found.

Source

CCC 2007

加法取余HASH。如果遇到hash值相同的雪花,那么从6个不同的点开始,正序、倒序比较各一次,看两片雪花是否完全相同。

 1 /**/
 2 #include<iostream>
 3 #include<cstdio>
 4 #include<cmath>
 5 #include<cstring>
 6 #include<algorithm>
 7 #include<vector>
 8 using namespace std;
 9 const int p=1e6+7;
10 const int mxn=100500;
11 int s[mxn][6];
12 int h;
13 bool flag=0;
14 vector<int>hash[p];
15 int n;
16 bool pd(int x,int y){
17     for(int i=0;i<6;i++){
18         int sx=0,sy=i;
19 //        printf("\ncmp: %d %d\n",sx,sy);
20         while(s[x][sx]==s[y][sy] && sx<6){
21             sx++;sy=(sy+1)%6;
22 //            printf("%d %d\n",s[x][sx],s[y][sy]);
23         }
24         if(sx==6){
25             flag=1;
26             return 1;
27         }
28     }
29     for(int i=0;i<6;i++){
30         int sx=0,sy=i;
31 //        printf("\ncmp2: %d %d\n",sx,sy);
32         while(s[x][sx]==s[y][sy] && sx<6){
33             sx++;sy=((sy-1)+6)%6;
34 //            printf("%d %d\n",s[x][sx],s[y][sy]);
35         }
36         if(sx==6){
37             flag=1;
38             return 1;
39         }
40     }
41     return 0;
42 }
43 int main(){
44     scanf("%d",&n);
45     int i,j;
46     for(int t=1;t<=n;t++){
47         h=0;
48         for(i=0;i<6;i++){
49             scanf("%d",&s[t][i]);
50             h+=s[t][i];
51             h%=p;
52         }
53 //        if(flag)continue;
54         if(!hash[h].empty()){
55             for(i=0;i<hash[h].size();i++){
56                 if(pd(t,hash[h][i])) break;
57             }
58         }
59         if(flag){
60             printf("Twin snowflakes found.\n");
61             return 0;
62         }
63         hash[h].push_back(t);
64     }
65     printf("No two snowflakes are alike.\n");
66     return 0;
67 }
时间: 2025-01-02 13:56:14

POJ3349 Snowflake Snow Snowflakes的相关文章

[poj3349]Snowflake Snow Snowflakes(hash)

Snowflake Snow Snowflakes Time Limit: 4000MS Memory Limit: 65536K Total Submissions: 37615 Accepted: 9882 Description 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

POJ3349 Snowflake Snow Snowflakes (hash

Snowflake Snow Snowflakes Time Limit: 4000MS   Memory Limit: 65536K Total Submissions: 48624   Accepted: 12697 Description You may have heard that no two snowflakes are alike. Your task is to write a program to determine whether this is really true.

Hash poj3349 Snowflake Snow Snowflakes

题意:判断是否有两片一样的雪花. Hash第一题,基本是抄的. ? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75

POJ3349: Snowflake Snow Snowflakes(hash 表)

考察hash表: 每一个雪花都有各自的6个arm值,如果两个雪花从相同或者不同位置开始顺时针数或者逆时针数可以匹配上,那么这两个雪花就是相等的. 我们采用hash的方法,这样每次查询用时为O(1),总用时为O(n). hash的本质是把值映射到地址或者下标,如果不同的key值对应到相同的indice上的话,就需要进行chaining处理,吧indice指向一个链表,链表的每一个节点存储共享同一indice的不同key值. 因此问题的核心变成:吧相等的雪花映射到相同的indice上.这里雪花是一个

POJ3349 Snowflake Snow Snowflakes 【哈希表】

题目 很简单,给一堆6元组,可以从任意位置开始往任意方向读,问有没有两个相同的6元组 题解 hash表入门题 先把一个六元组的积 + 和取模作为hash值,然后查表即可 期望\(O(n)\) #include<iostream> #include<cstdio> #include<cmath> #include<cstring> #include<algorithm> #define LL long long int #define Redge(

poj3349(Snowflake Snow Snowflakes)

题目地址:Snowflake Snow Snowflakes 题目大意: 给你N个雪花,每个雪花由6个长度构成,让你判断N哥雪花中是否有两个或两个以上的雪花是相似的,相似的规则是:有两个雪花a.b.b在任意位置顺时针或者逆时针转和a的大小顺序相同即为相似的雪花. 解题思路: 一般的方法如果时间复杂度是O(n^2)的都会超时,所以要尽量让N小,所有用个简单哈希.将6个数的和对N取余存到一个vector.然后再在vector里找看是否有相似的雪花. 代码: 1 #include <algorithm

POJ3349 Language: Snowflake Snow Snowflakes

POJ3349 Language: Snowflake Snow Snowflakes 题目:传送门 题解: 链表+hash的一道水题 填个坑补个漏... 代码: 1 #include<cstdio> 2 #include<cstring> 3 #include<cstdlib> 4 #include<cmath> 5 #include<algorithm> 6 using namespace std; 7 typedef long long L

poj 3349:Snowflake Snow Snowflakes(哈希查找,求和取余法+拉链法)

Snowflake Snow Snowflakes Time Limit: 4000MS   Memory Limit: 65536K Total Submissions: 30529   Accepted: 8033 Description You may have heard that no two snowflakes are alike. Your task is to write a program to determine whether this is really true. Y

hash应用以及vector的使用简介:POJ 3349 Snowflake Snow Snowflakes

今天学的hash.说实话还没怎么搞懂,明天有时间把知识点总结写了,今天就小小的写个结题报告吧! 题意: 在n (n<100000)个雪花中判断是否存在两片完全相同的雪花,每片雪花有6个角,每个角的长度限制为1000000 两片雪花相等的条件: 雪花6个角的长度按顺序相等(这个顺序即可以是顺时针的也可以是逆时针的) 解题思路: hash:连加求余法 求key 值,链地址法解决冲突,连加求余法 求key 值挺简单,关于链地址法解决冲突可以通过c++中,vector容器可以较为方便的实现. 下面先介绍