poj 2513 Colored Sticks
2321 단어 color
사전 트 리+검색 집합+오로라
코드:
#include<iostream>
#include<cmath>
#include<cstdio>
#include<string>
#include<cstring>
#include<vector>
#include<stack>
#include<queue>
#include<map>
#include<set>
#include<algorithm>
#define long long LL
using namespace std;
const int INF=0x3f3f3f3f;
const int KC=26;
const int N=1000005;
int f[N];
int num[N];
struct node
{
int k;
struct node *next[KC];
}*root;
int value;
int fx(int x)
{
if(f[x]!=x)
f[x]=fx(f[x]);
return f[x];
}
void ufsMerge(int l,int r)
{
int L=fx(l);
int R=fx(r);
if(L!=R)
f[L]=R;
}
int add(struct node *p,char s[],int n)
{
struct node *t;
for(int i=0;i<n;++i)
{
if(p->next[s[i]-'a']==NULL)
{
t=new node;
t->k=-1;
for(int j=0;j<KC;++j)
t->next[j]=NULL;
p->next[s[i]-'a']=t;
}
p=p->next[s[i]-'a'];
}
if(p->k==-1)
p->k=value++;
return p->k;
}
int main()
{
//freopen("data.in","r",stdin);
root=new node;
root->k=-1;
for(int i=0;i<KC;++i)
root->next[i]=NULL;
value=0;
for(int i=0;i<N;++i)
f[i]=i;
memset(num,0,sizeof(num));
char a[KC],b[KC];
while(scanf("%s ",a)!=EOF)
{//puts(a);
scanf("%s ",b);
int l=add(root,a,strlen(a));
int r=add(root,b,strlen(b));
//cout<<l<<" "<<r<<endl;
++num[l];
++num[r];
ufsMerge(l,r);//cout<<l<<" "<<r<<endl;
}
int odd=0,oven=0;
bool flag=true;
for(int i=0;i<value;++i)
{//cout<<f[i]<<endl;
if(i>0&&fx(i)!=fx(i-1))
{flag=false;break;}
if((num[i]&1))
++odd;
else
++oven;
}
if((odd==0||odd==2)&&flag==true)
printf("Possible");
else
printf("Impossible");
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
C++ Builder XE4 > TStringGrid 및 TCalendar > TStringGrid에 TCalendar 문자열을 복사하여 배경색을 변경하는 구현운영 환경 처리 개요 TCalendar와 TStringGrid가 있습니다 TStringGrid에 TCalendar 문자열을 복사합니다. TStringGrid의 일부 셀의 배경색 변경 구현 Unit1.h Unit1.c...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.