Codeforces Round #464 (Div. 2) D. Love Rescue 并查集

D. Love Rescue
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Valya and Tolya are an ideal pair, but they quarrel sometimes. Recently, Valya took offense at her boyfriend because he came to her in t-shirt with lettering that differs from lettering on her pullover. Now she doesn't want to see him and Tolya is seating at his room and crying at her photos all day long.

This story could be very sad but fairy godmother (Tolya's grandmother) decided to help them and restore their relationship. She secretly took Tolya's t-shirt and Valya's pullover and wants to make the letterings on them same. In order to do this, for one unit of mana she can buy a spell that can change some letters on the clothes. Your task is calculate the minimum amount of mana that Tolya's grandmother should spend to rescue love of Tolya and Valya.

More formally, letterings on Tolya's t-shirt and Valya's pullover are two strings with same length n consisting only of lowercase English letters. Using one unit of mana, grandmother can buy a spell of form (c1, c2) (where c1 and c2 are some lowercase English letters), which can arbitrary number of times transform a single letter c1 to c2 and vise-versa on both Tolya's t-shirt and Valya's pullover. You should find the minimum amount of mana that grandmother should spend to buy a set of spells that can make the letterings equal. In addition you should output the required set of spells.

Input

The first line contains a single integer n (1 ≤ n ≤ 105) — the length of the letterings.

The second line contains a string with length n, consisting of lowercase English letters — the lettering on Valya's pullover.

The third line contains the lettering on Tolya's t-shirt in the same format.

Output

In the first line output a single integer — the minimum amount of mana t required for rescuing love of Valya and Tolya.

In the next t lines output pairs of space-separated lowercase English letters — spells that Tolya's grandmother should buy. Spells and letters in spells can be printed in any order.

If there are many optimal answers, output any.

Examples
input
Copy
3
abb
dad
output
2
a d
b a
input
Copy
8
drpepper
cocacola
output
7
l e
e d
d c
c p
p o
o r
r a
Note

In first example it's enough to buy two spells: ('a','d') and ('b','a'). Then first letters will coincide when we will replace letter 'a' with 'd'. Second letters will coincide when we will replace 'b' with 'a'. Third letters will coincide when we will at first replace 'b' with 'a' and then 'a' with 'd'.

题意:给定两个长度相同的字符串,每次释放一个魔法可以将两个字符串中的任意数量的两种字母“c1”和“c2”互相任意转化,问最少施法多少次可使两个字符串转化为相同的字符串。

思路:对应位置的两个字母不同,则必会通过一种转化使其相同。由于两个字母可互相转化,故两个字母等效。将其加入并查集,并最终统计并查集中边的数量即可。

代码如下:

#include <bits/stdc++.h>
using namespace std;
const int maxn = 1e5+10;
int pre[maxn],n,ans;
char a[maxn],b[maxn];

int Find(int x)
{
    int r=x;
    while (pre[r]!=r)
        r=pre[r];
    int i=x,j;
    while (i!=r){
        j=pre[i];
        pre[i]=r;
        i=j;
    }
    return r;
}

void mix(int x,int y)
{
    int fx=Find(x);
    int fy=Find(y);
    if (fx!=fy){
        pre[fx]=fy;
        ans++;
    }
}

int main()
{
    while (~scanf("%d",&n)){
        for (int i=0;i<26;i++)
            pre[i]=i;
        ans=0;
        scanf("%s %s",a,b);
        for (int i=0;i<n;i++){
            int dx=a[i]-'a';
            int dy=b[i]-'a';
            mix(dx,dy);
        }
        printf("%d\n",ans);
        for (int i=0;i<26;i++){
            if (pre[i]!=i)
                printf("%c %c\n",i+'a',pre[i]+'a');
        }
    }
    return 0;
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值