题意:给出两个由小写字母构成的长度相等的字符串$S$与$T$,给出变换$c1\,c2$表示将两个字符串中所有$c1$字符变为$c2$,求将$S$和$T$通过这种变换变为相等字符串的最少变换次数。$1 \leq |S|,|T| \leq 10^5$
很巧妙的思维诶qwq
用并查集维护变换过程,同一个并查集内的所有字符都能通过若干变换表示为同一个字符,而不同并查集内的字符通过变换无法变为同一字符。考虑同一个位置上的两个字符$S_a$与$T_a$,如果它们不相等,那么这两种字符之间就一定要经过直接或者间接的变换变到一起,也就是说它们要在同一个并查集内,如果不在就需要连边并增加一种变换,如果在同一并查集内那么表示已经间接地通过之前的变换使得这两个字符相等了,就不需要再变换了。
#include<bits/stdc++.h> //This code is written by Itst using namespace std; inline int read(){ ; ; char c = getchar(); while(c != EOF && !isdigit(c)){ if(c == '-') f = ; c = getchar(); } while(c != EOF && isdigit(c)){ a = (a << ) + (a << ) + (c ^ '); c = getchar(); } return f ? -a : a; } ; ][] , s1[MAXN] , s2[MAXN]; ]; int find(int x){ return fa[x] == x ? x : (fa[x] = find(fa[x])); } int main(){ #ifndef ONLINE_JUDGE freopen("939D.in" , "r" , stdin); //freopen("939D.out" , "w" , stdout); #endif int N = read(); ; scanf( , s2 + ); ; i <= ; ++i) fa[i] = i; ; i <= N ; ++i) if(find(s1[i] - 'a') != find(s2[i] - 'a')){ c[++cnt][] = find(s1[i] - 'a') + 'a'; c[cnt][] = find(s2[i] - 'a') + 'a'; fa[find(s1[i] - 'a')] = find(s2[i] - 'a'); } cout << cnt << endl; ; i <= cnt ; ++i) cout << c[i][] << ] << endl; ; }