相同的雪花 Hash
相同的雪花
- 描述
- 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. 注意hash表大小
#include<iostream>
#include<cstdio>
#include<cmath>
#include<cstring>
#include<sstream>
#include<algorithm>
#include<queue>
#include<deque>
#include<iomanip>
#include<vector>
#include<cmath>
#include<map>
#include<stack>
#include<set>
#include<fstream>
#include<memory>
#include<list>
#include<string>
using namespace std;
typedef long long LL;
typedef unsigned long long ULL;
#define MAXN 100001
#define INF 1000000009
#define eps 0.00000001
/*
寻找是否有两片相同的雪花
雪花的边可能从任意一边 开始!
Hash 雪花总边长
*/
typedef struct Hashnode
{
int a[];
struct Hashnode* next;
}*List;
typedef struct HashT
{
List* L;
}*HashTable;
int NextPrime(int n)
{
int i;
for (int tmp = n;; tmp++)
{
for (i = ; i*i <= tmp; i++)
{
if (tmp%i == )
break;
}
if (i*i > tmp)
return i;
}
}
HashTable Init(int n)
{
HashTable H = (HashTable)malloc(sizeof(HashT));
H->L = (List*)malloc(sizeof(List)*MAXN);
for (int i = ; i < MAXN; i++)
{
H->L[i] = (List)malloc(sizeof(Hashnode));
memset(H->L[i]->a, , sizeof(H->L[i]->a));
H->L[i]->next = NULL;
}
return H;
}
void Free(HashTable H)
{
for (int i = ; i < MAXN; i++)
free(H->L[i]);
free(H->L);
free(H);
}
int Hash(int sum, int h)
{
return sum%h;
}
List Find(int a[], int sum, HashTable H)
{
List p = H->L[Hash(sum, MAXN)];
List l = p->next;
int i;
while (l != NULL)
{
for (int j = ; j < ; j++)
{
if (l->a[j] == a[])
{
for (i = ; i < ; i++)
{
if (l->a[(j + i) % ] != a[i])
break;
}
if (i == ) return l;
for (i = ; i < ; i++)
{
if (l->a[(j - i + ) % ] != a[i])
break;
}
if (i == ) return l;
}
}
l = l->next;
}
return NULL;
}
bool Insert(int a[], int sum, HashTable H)
{
List L = H->L[Hash(sum, MAXN)];
List p = Find(a, sum, H);
if (p == NULL)
{
List tmp = (List)malloc(sizeof(Hashnode));
for (int i = ; i < ; i++)
tmp->a[i] = a[i];
tmp->next = L->next;
L->next = tmp;
return true;
}
return false;
}
int main()
{
int T, n, tmp[];
bool f;
scanf("%d", &T);
while (T--)
{
scanf("%d", &n);
f = false;
HashTable H = Init(n);
for (int i = ; i < n; i++)
{
int sum = ;
for (int j = ; j < ; j++)
{
scanf("%d", &tmp[j]);
sum += tmp[j];
}
if (!f && !Insert(tmp, sum, H))
f = true;
}
if (f)
printf("Twin snowflakes found.\n");
else
printf("No two snowflakes are alike.\n");
Free(H);
}
return ;
}
相同的雪花 Hash的更多相关文章
- nyoj-130-相同的雪花(hash)
题目链接 /* Name:NYOJ-130-相同的雪花 Copyright: Author: Date: 2018/4/14 15:13:39 Description: 将雪花各个分支上的值加起来,h ...
- POJ 3349 HASH
题目链接:http://poj.org/problem?id=3349 题意:你可能听说话世界上没有两片相同的雪花,我们定义一个雪花有6个瓣,如果存在有2个雪花相同[雪花是环形的,所以相同可以是旋转过 ...
- 0x14 hash
被虐爆了 cry 我的hash是真的菜啊... poj3349 肝了一个上午心态崩了...一上午fail了42次我的天,一开始搞了个排序复杂度多了个log,而且是那种可能不同值相等的hash,把12种 ...
- POJ 3349 Snowflake Snow Snowflakes(哈希表)
题意:判断有没有两朵相同的雪花.每朵雪花有六瓣,比较花瓣长度的方法看是否是一样的,如果对应的arms有相同的长度说明是一样的.给出n朵,只要有两朵是一样的就输出有Twin snowflakes fou ...
- 【hash表】收集雪花
[哈希和哈希表]收集雪花 题目描述 不同的雪花往往有不同的形状.在北方的同学想将雪花收集起来,作为礼物送给在南方的同学们.一共有n个时刻,给出每个时刻下落雪花的形状,用不同的整数表示不同的形状.在收集 ...
- Acwing:137. 雪花雪花雪花(Hash表)
有N片雪花,每片雪花由六个角组成,每个角都有长度. 第i片雪花六个角的长度从某个角开始顺时针依次记为ai,1,ai,2,…,ai,6ai,1,ai,2,…,ai,6. 因为雪花的形状是封闭的环形,所以 ...
- NYOJ130 同样的雪花 【Hash】
同样的雪花 时间限制:1000 ms | 内存限制:65535 KB 难度:4 描写叙述 You may have heard that no two snowflakes are alike. ...
- POJ 3349:Snowflake Snow Snowflakes(数的Hash)
http://poj.org/problem?id=3349 Snowflake Snow Snowflakes Time Limit: 4000MS Memory Limit: 65536K T ...
- [poj3349]Snowflake Snow Snowflakes(hash)
Snowflake Snow Snowflakes Time Limit: 4000MS Memory Limit: 65536K Total Submissions: 37615 Accepted: ...
随机推荐
- Android属性之build.prop生成过程分析(转载)
转自: http://www.cnblogs.com/myitm/archive/2011/12/01/2271032.html 本文简要分析一下build.prop是如何生成的.Android的bu ...
- PCB NOSQL MongoDb MI流程指示数据存储结构
一.MI流程指示结构 二.产品型号树结构(即盲埋孔板型号结构) 三.MI流程指示UI 小结:1.MI流程指示使用的表非常之多(30多张表),存储的数据分散到各个表中,而NOSQL 一个产品型号一条记录 ...
- phonegap在eclipse上的安装
1.首先安装好eclipse 2.下载安装好sdk 3.下载安装好adt 4.在这个地方下载好phonegap的包,https://codeload.github.com/phonegap/phone ...
- 【NOIP练习赛】开车
[NOIP练习赛]T2.开车 Description 老司机小 Q 要在一个十字路口指挥车队开车,这个十字路口可 以描述为一个 n*n 的矩阵,其中第 2 行到第 n-1 行都各有一道横向车 道,第 ...
- 题解报告:hdu 1285 确定比赛名次
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1285 Problem Description 有N个比赛队(1<=N<=500),编号依次 ...
- D3.js 力导向图(气泡+线条+箭头+文字)
<!DOCTYPE html> <meta charset="utf-8"> <style> .link { fill: none; strok ...
- Android项目实战_手机安全卫士拦截骚扰
###1.骚扰拦截需求分析1.界面1.1 黑名单列表界面1.2 添加黑名单界面2.功能2.1 黑名单的添加.删除2.2 拦截电话2.3 拦截短信 ###2.黑名单数据库的创建1.分析需要的字段id 主 ...
- Linux内存压力测试-memtester工具
*:first-child { margin-top: 0 !important; } body>*:last-child { margin-bottom: 0 !important; } /* ...
- C 语言常用方法技巧
C语言常用方法技巧 *:first-child { margin-top: 0 !important; } body>*:last-child { margin-bottom: 0 !impor ...
- vue 打印 页面特定部分转pdf
https://www.jb51.net/article/147040.htm https://www.jianshu.com/p/dd120b65446a //转pdf