codeforces766D Mahmoud and a Dictionary [并查集]【数据结构】
题目连接:http://codeforces.com/contest/766/problem/D —————————————————————————————-. He know that if two words have a relation between them,then each of them has relations with the words that has relations with the other. For example,if like means love and love is the opposite of hate,then like is also the opposite of hate. One more example: if love is the opposite of hate and hate is the opposite of like,then love means like,and so on. Sometimes Mahmoud discovers a wrong relation. A wrong relation is a relation that makes two words equal and opposite at the same time. For example if he knows that love means like and like is the opposite of hate,and then he figures out that hate means like,the last relation is absolutely wrong because it makes hate and like opposite and have the same meaning at the same time. After Mahmoud figured out many relations,he was worried that some of them were wrong so that they will make other relations also wrong,so he decided to tell every relation he figured out to his coder friend Ehab and for every relation he wanted to know is it correct or wrong,basing on the previously discovered relations. If it is wrong he ignores it,and doesn’t check with following relations. After adding all relations,Mahmoud asked Ehab about relations between some words based on the information he had given to him. Ehab is busy making a Codeforces round so he asked you for help. Input The second line contains n distinct words a1,?a2,?…,?an consisting of small English letters with length not exceeding 20,which are the words in the dictionary. Then m lines follow,each of them contains an integer t (1?≤?t?≤?2) followed by two different words xi and yi which has appeared in the dictionary words. If t?=?1,that means xi has a synonymy relation with yi,otherwise xi has an antonymy relation with yi. Then q lines follow,each of them contains two different words which has appeared in the dictionary. That are the pairs of words Mahmoud wants to know the relation between basing on the relations he had discovered. All words in input contain only lowercase English letters and their lengths don’t exceed 20 characters. In all relations and in all questions the two words are different. Output After that print q lines,one per each question. If the two words have the same meaning,output 1. If they are opposites,output 2. If there is no relation between them,output 3. See the samples for better understanding. Examples —————————————————————————————-. 解题思路:
看了题解 发现用另一个数组来维护本堆的反义词的堆是哪一个,真是奥妙重重。666 这样的话 这个题目就简单清晰多了,直接维护就行了。 注意对于m条关系的判定时的细节就好了,详见代码。 借(chao)鉴(xi)这里<–戳戳戳 附本题代码 int n,m,q,op;
string str,str1,str2;
map<string,int>mmp;
int pre[N],opp[N];
int findi(int x){
int r = x;
while(r != pre[r]) r=pre[r];
int i=x,j;
while(i!=j){
j=pre[i];
pre[i]=r;
i=j;
}
return r;
}
void init(){
mmp.clear();
Rep(i,0,n) pre[i]=i,opp[i]=0;
}
int main(){
while(cin>>n>>m>>q){
init();
Rep(i,1,n) cin>>str,mmp[str]=i;
Rep(i,m){
cin>>op>>str1>>str2;
int x = mmp[str1],y = mmp[str2];
int u = findi(x),v = findi(y);
int uu= findi(opp[u]),vv= findi(opp[v]);
if(op==1){
if(uu!=v){
puts("YES");
pre[u]=v;
if(uu&&vv) pre[uu]=vv;
if(!vv) opp[v]=uu;
}
else puts("NO");
}
else {
if(u!=v) {
puts("YES");
if(uu) pre[v]=uu;
else opp[u]=v;
if(vv) pre[u]=vv;
else opp[v]=u;
}
else puts("NO");
}
}
Rep(i,q){
cin>>str1>>str2;
int x = mmp[str1],vv= findi(opp[v]);
if (u==v) puts("1");
else {
if (uu==v||vv==u) puts("2");
else puts("3");
}
}
}
return 0;
}
(编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |