Codeforces Round # 603 (Div. 2) D. Secret Passwords disjoint-set

D. Secret Passwords

One unknown hacker wants to get the admin's password of AtForces testing system, to get problems from the next contest. To achieve that, he sneaked into the administrator's office and stole a piece of paper with a list of n passwords — strings, consists of small Latin letters.

Hacker went home and started preparing to hack AtForces. He found that the system contains only passwords from the stolen list and that the system determines the equivalence of the passwords a and b as follows:

two passwords a and b are equivalent if there is a letter, that exists in both a and b;
two passwords a and b are equivalent if there is a password c from the list, which is equivalent to both a and b.
If a password is set in the system and an equivalent one is applied to access the system, then the user is accessed into the system.

For example, if the list contain passwords "a", "b", "ab", "d", then passwords "a", "b", "ab" are equivalent to each other, but the password "d" is not equivalent to any other password from list. In other words, if:

admin's password is "b", then you can access to system by using any of this passwords: "a", "b", "ab";
admin's password is "d", then you can access to system by using only "d".
Only one password from the list is the admin's password from the testing system. Help hacker to calculate the minimal number of passwords, required to guaranteed access to the system. Keep in mind that the hacker does not know which password is set in the system.

Input

The first line contain integer n (1≤n≤2⋅105) — number of passwords in the list. Next n lines contains passwords from the list – non-empty strings si, with length at most 50 letters. Some of the passwords may be equal.

It is guaranteed that the total length of all passwords does not exceed 106 letters. All of them consist only of lowercase Latin letters.

Output

In a single line print the minimal number of passwords, the use of which will allow guaranteed to access the system.

Examples

input
4
a
b
ab
d
output
2
input
3
ab
bc
abc
output
1
input
1
codeforces
output
1

Note

In the second example hacker need to use any of the passwords to access the system.

The meaning of problems

Now you have n passwords, but there is some passwords are equivalent, equivalent definition is:

Suppose there is a letter x, a and b in the string have appeared, then a string and the string is equivalent b.

Assume that a string and the string equivalent c, b and c is equivalent to a string, then a and b is also equivalent.

Ask you master the minimum number of password, you can have all your password

answer

Video solution to a problem https://www.bilibili.com/video/av77514280/

Disjoint-set bare title. . . Every letter and contain their own synthesis can cook

Code

#include<bits/stdc++.h>
using namespace std;
const int maxn = 3e5+7;
int fa[maxn],n;
string s[maxn];
int fi(int x){
    return fa[x]==x?fa[x]:fa[x]=fi(fa[x]);
}
int main(){
    cin>>n;
    for(int i=1;i<=n;i++){
        cin>>s[i];
    }
    for(int j=1;j<=n+26;j++){
        fa[j]=j;
    }
    for(int i=1;i<=n;i++){
        for(int j=0;j<s[i].size();j++){
            fa[fi(i)]=fa[fi(n+s[i][j]-'a'+1)];
        }
    }
    int ans = 0;
    set<int>vis;
    for(int i=1;i<=n;i++){
        if(!vis.count(fi(i))){
            ans++;
            vis.insert(fi(i));
        }
    }
    cout<<ans<<endl;
}

Guess you like

Origin www.cnblogs.com/qscqesze/p/11961835.html