Codeforces Round #389 (Div. 2)B. Santa Claus and Keyboard Check(模拟)

69 阅读1分钟

题目:

B. Santa Claus and Keyboard Check

time limit per test

2 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

Santa Claus decided to disassemble his keyboard to clean it. After he returned all the keys back, he suddenly realized that some pairs of keys took each other's place! That is, Santa suspects that each key is either on its place, or on the place of another key, which is located exactly where the first key should be.

In order to make sure that he's right and restore the correct order of keys, Santa typed his favorite patter looking only to his keyboard.

You are given the Santa's favorite patter and the string he actually typed. Determine which pairs of keys could be mixed. Each key must occur in pairs at most once.

Input

The input consists of only two strings s and t denoting the favorite Santa's patter and the resulting string. s and t are not empty and have the same length, which is at most 1000. Both strings consist only of lowercase English letters.

Output

If Santa is wrong, and there is no way to divide some of keys into pairs and swap keys in each pair so that the keyboard will be fixed, print «-1» (without quotes).

Otherwise, the first line of output should contain the only integer k (k ≥ 0) — the number of pairs of keys that should be swapped. The following k lines should contain two space-separated letters each, denoting the keys which should be swapped. All printed letters must be distinct.

If there are several possible answers, print any of them. You are free to choose the order of the pairs and the order of keys in a pair.

Each letter must occur at most once. Santa considers the keyboard to be fixed if he can print his favorite patter without mistakes.

Examples

input

helloworld
ehoolwlroz

output

3
h e
l o
d z

input

hastalavistababy
hastalavistababy

output

0

input

merrychristmas
christmasmerry

output

-1

代码:

#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
char s1[1010],s2[1010],f[500];//f用来记录两个字符交换的信息
int main()
{
    int i,j,k,l,p,q,x,y,z,ans;
    scanf("%s%s",s1,s2);//读入两个字符串
    l=strlen(s1);//计算长度
    for (i=0; i<l; i++)
        if (f[s1[i]]*f[s2[i]]==0)//如果这两个字符还没有被对应
        {
            if (f[s1[i]]+f[s2[i]]==0)//判断是否已经一个字符被对应
            {
                f[s1[i]]=s2[i];//交换字符
                f[s2[i]]=s1[i];
            }
            else
            {
                printf("-1\n");
                return 0;
            }
        }
        else
        {
            if (f[s1[i]]!=s2[i]||f[s2[i]]!=s1[i])//两种字符不匹配就输出-1
            {
                printf("-1\n");
                return 0;
            }
        }
    ans=0;//计数
    for (i='a'; i<='z'; i++)
        if (f[i]&&f[i]>i)
            ans++;
    printf("%d\n",ans);
    for (i='a'; i<='z'; i++)
        if (f[i]&&f[i]>i)
            printf("%c %c\n",i,f[i]);//输出结果
}

思路很重要!
\