首页 技术 正文
技术 2022年11月15日
0 收藏 456 点赞 3,954 浏览 2741 个字

Snowflake Snow Snowflakes

Time Limit: 4000MS   Memory Limit: 65536K
Total Submissions: 43504   Accepted: 11411

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 

  • 可以每次对于一个输入查询之前的雪花中是否有相同的
  • 但是难点在于题目不保证雪花输入的方向和起点我们只能枚举
  • 如果On枚举。。。还是算了吧
  • 但是这里出了枚举好像也没有其他的办法了,因为我们没法定义一种对于雪花长短的一种排列方式使得通过这种排序在map中实现对于相同类型雪花的一个聚集效果
  • 所以还是要在枚举上下功夫
  • 显然两个完全一致的雪花各个花瓣之和相等
  • 这里花瓣长度之和如果不加处理是不能用数组存的(好吧,做完题发现其实是可以用map来存,但是我们这里练hash)
  • 我们对于sumi用素数p来进行hash,将对p取模结果相同的雪花合并为一类存储起来
  • 进行比较的过程中就减少了枚举的个数
  • 之后就是朴素的对于每一种可能性的检测,枚举起点和顺逆
  • 这里需要以后注意的一点是对于hash结果的存放最好用vector,不要用数组,数组可能爆内存
  • 说实在的,后来看看好像离散化后map存下也是可以的?
 #include <iostream>
#include <string>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <climits>
#include <cmath>
#include <vector>
#include <queue>
#include <stack>
#include <set>
#include <map>
using namespace std;
typedef long long LL ;
typedef unsigned long long ULL ;
const int maxn = + ;
const int inf = 0x3f3f3f3f ;
const int npos = - ;
const int mod = 1e9 + ;
const int mxx = + ;
const double eps = 1e- ;
const double PI = acos(-1.0) ; int n, ans;
int c[maxn][], b[maxn];
int use[maxn];
std::vector<int> v[maxn];
int main(){
// freopen("in.txt","r",stdin);
// freopen("out.txt","w",stdout);
while(~scanf("%d",&n)){
ans=;
memset(use,,sizeof(use));
for(int i=;i<=n;i++){
int sum=;
for(int j=;j<;j++){
scanf("%d",&c[i][j]);
sum+=c[i][j];
}
sum%=;
b[i]=sum;
if(!use[sum]){
v[sum].clear();
}
use[sum]=;
v[sum].push_back(i);
if(!ans){
int sz=v[sum].size();
if(sz>){
for(int j=;j<sz;j++){
int idx=v[b[i]][j];
if(i!=idx){
int e, f, st;
if(!ans){
for(st=;st<;st++){
for(e=,f=st;e<;e++,f=(f++)%)
if(c[i][e]!=c[idx][f])
break;
if(e==)
ans=;
}
}
if(!ans){
for(st=;st<;st++){
for(e=,f=st;e<;e++,f=(f-+)%)
if(c[i][e]!=c[idx][f])
break;
if(e==)
ans=;
}
}
}
if(ans)
break;
}
}
}
}
puts(ans?"Twin snowflakes found.":"No two snowflakes are alike.");
}
return ;
}
相关推荐
python开发_常用的python模块及安装方法
adodb:我们领导推荐的数据库连接组件bsddb3:BerkeleyDB的连接组件Cheetah-1.0:我比较喜欢这个版本的cheeta…
日期:2022-11-24 点赞:878 阅读:9,038
Educational Codeforces Round 11 C. Hard Process 二分
C. Hard Process题目连接:http://www.codeforces.com/contest/660/problem/CDes…
日期:2022-11-24 点赞:807 阅读:5,524
下载Ubuntn 17.04 内核源代码
zengkefu@server1:/usr/src$ uname -aLinux server1 4.10.0-19-generic #21…
日期:2022-11-24 点赞:569 阅读:6,372
可用Active Desktop Calendar V7.86 注册码序列号
可用Active Desktop Calendar V7.86 注册码序列号Name: www.greendown.cn Code: &nb…
日期:2022-11-24 点赞:733 阅读:6,152
Android调用系统相机、自定义相机、处理大图片
Android调用系统相机和自定义相机实例本博文主要是介绍了android上使用相机进行拍照并显示的两种方式,并且由于涉及到要把拍到的照片显…
日期:2022-11-24 点赞:512 阅读:7,785
Struts的使用
一、Struts2的获取  Struts的官方网站为:http://struts.apache.org/  下载完Struts2的jar包,…
日期:2022-11-24 点赞:671 阅读:4,867