Love Rescue

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
3
abb
dad
output
2
a d
b a
input
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’.

#include <iostream>
#include <vector>

using namespace std;

const int N=1e5+10;

int pre[N],ans=0;
char a[N],b[N];
vector<pair<char,char>>v;

struct DSU
{
    void Init(int n)
    {
        for(int i=1;i<=n;i++)   pre[i]=i;
    }
    int Find(int x)
    {
        return x==pre[x] ? x:pre[x]=Find(pre[x]);
    }
    void Union(int a,int b)
    {
        int x=Find(a);
        int y=Find(b);
        if(x==y)    return;
        pre[y]=x;
        ans++;
        v.push_back(make_pair(x+'a',y+'a'));
    }
}dsu;

int main()
{
    int n;
    while(cin>>n)
    {
        dsu.Init(26);
        cin>>a>>b;
        for(int i=0;i<n;i++)
        {
            dsu.Union(a[i]-'a',b[i]-'a');
        }
        cout<<ans<<endl;
        for(int i=0;i<v.size();i++) cout<<v[i].first<<" "<<v[i].second<<endl;     
    }
    return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值