302544: CF491C. Deciphering

Memory Limit:256 MB Time Limit:1 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Deciphering

题意翻译

给定两个长度均为 $n$ 的字符串 $s$ 和 $t$,其中的每个字符都属于集合 $\{a,b,c,\dots,y,z,A,B,C,\dots,Y,Z\}$ 中**前 $k$ 个字符**所构成的子集 $\mathbb{S}$。 你需要构造一个**一对一**的映射 $f:\mathbb{S}\rightarrow\mathbb{S}$,使得满足 $f(s_i)=t_i$ 的位置 $i$ 最多。 这里的一对一指对于每个 $i\in\mathbb S$,$f(i)$ 唯一,且满足 $f(x)=i$ 的 $x$ 也唯一。 输出最多的位置,以及任一种最优的映射方案。

题目描述

One day Maria Ivanovna found a Sasha's piece of paper with a message dedicated to Olya. Maria Ivanovna wants to know what is there in a message, but unfortunately the message is ciphered. Maria Ivanovna knows that her students usually cipher their messages by replacing each letter of an original message by some another letter. Replacement works in such way that same letters are always replaced with some fixed letter, and different letters are always replaced by different letters. Maria Ivanovna supposed that the message contains answers to the final exam (since its length is equal to the number of final exam questions). On the other hand she knows that Sasha's answer are not necessary correct. There are $ K $ possible answers for each questions. Of course, Maria Ivanovna knows correct answers. Maria Ivanovna decided to decipher message in such way that the number of Sasha's correct answers is maximum possible. She is very busy now, so your task is to help her.

输入输出格式

输入格式


First line contains length of both strings $ N $ ( $ 1<=N<=2000000 $ ) and an integer $ K $ — number of possible answers for each of the questions ( $ 1<=K<=52 $ ). Answers to the questions are denoted as Latin letters abcde...xyzABCDE...XYZ in the order. For example for $ K=6 $ , possible answers are abcdef and for $ K=30 $ possible answers are abcde...xyzABCD. Second line contains a ciphered message string consisting of Latin letters. Third line contains a correct answers string consisting of Latin letters.

输出格式


In the first line output maximum possible number of correct Sasha's answers. In the second line output cipher rule as the string of length $ K $ where for each letter from the students' cipher (starting from 'a' as mentioned above) there is specified which answer does it correspond to. If there are several ways to produce maximum answer, output any of them.

输入输出样例

输入样例 #1

10 2
aaabbbaaab
bbbbabbbbb

输出样例 #1

7
ba

输入样例 #2

10 2
aaaaaaabbb
bbbbaaabbb

输出样例 #2

6
ab

输入样例 #3

9 4
dacbdacbd
acbdacbda

输出样例 #3

9
cdba

Input

题意翻译

给定两个长度均为 $n$ 的字符串 $s$ 和 $t$,其中的每个字符都属于集合 $\{a,b,c,\dots,y,z,A,B,C,\dots,Y,Z\}$ 中**前 $k$ 个字符**所构成的子集 $\mathbb{S}$。 你需要构造一个**一对一**的映射 $f:\mathbb{S}\rightarrow\mathbb{S}$,使得满足 $f(s_i)=t_i$ 的位置 $i$ 最多。 这里的一对一指对于每个 $i\in\mathbb S$,$f(i)$ 唯一,且满足 $f(x)=i$ 的 $x$ 也唯一。 输出最多的位置,以及任一种最优的映射方案。

加入题单

算法标签: