码迷,mamicode.com
首页 > 其他好文 > 详细

洛谷.1333.瑞瑞的木棍(欧拉路径 Hash)

时间:2018-03-03 12:21:56      阅读:118      评论:0      收藏:0      [点我收藏+]

标签:++   include   ace   ==   string   source   pos   http   www.   

题目链接

#include <cstdio>
#include <cstring>
const int N=2e6+5,M=5e5+5,mod=2e6;
const int seed[5]={31,37,131,41};

int dgr[N],fa[M];
char s[15];
namespace Hash
{
    int cnt,val[N],pos[N];
    int Get_Hash(char *s)
    {
        int x=0,l=strlen(s);
        for(int i=0; i<l; ++i) x=(x+s[i]*seed[i%4])%mod;
        return x;
    }
    int Insert(char *s)
    {
        int p=Get_Hash(s);
        while(val[p]&&val[p]!=p){
            ++p;
            if(p>=mod) p-=mod;
        }
        if(val[p]) return pos[p];
        val[p]=p;
        return pos[p]=++cnt;
    }
}
int Find(int x){
    return x==fa[x]?x:fa[x]=Find(fa[x]);
}

int main()
{
    int p1,p2,r1,r2,t=0;
    for(int i=1; i<M; ++i) fa[i]=i;
    while(~scanf("%s",s))
    {
        p1=Hash::Insert(s);
        scanf("%s",s);
        p2=Hash::Insert(s);
        ++dgr[p1], ++dgr[p2];
        r1=Find(p1), r2=Find(p2);
        if(r1!=r2) ++t,fa[r1]=r2;
    }
    if(t<Hash::cnt-1) {printf("Impossible"); return 0;}
    int tot=Hash::cnt; t=0;
    for(int i=1; i<=tot; ++i)
        if(dgr[i]&1) ++t;
    printf(t>2?"Impossible":"Possible");

    return 0;
}

洛谷.1333.瑞瑞的木棍(欧拉路径 Hash)

标签:++   include   ace   ==   string   source   pos   http   www.   

原文地址:https://www.cnblogs.com/SovietPower/p/8495849.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!