B. AquaMoon and Stolen String- Codeforces Round #732 (Div. 2)

原文链接Problem - 1546B - Codeforces

B. AquaMoon and Stolen String

time limit per test

1 second

memory limit per test

256 megabytes

input

standard input

output

standard output

AquaMoon had nn strings of length mm each. nn is an odd number.

When AquaMoon was gone, Cirno tried to pair these nn strings together. After making n−12n−12 pairs, she found out that there was exactly one string without the pair!

In her rage, she disrupted each pair of strings. For each pair, she selected some positions (at least 11 and at most mm) and swapped the letters in the two strings of this pair at the selected positions.

For example, if m=6m=6 and two strings "abcdef" and "xyzklm" are in one pair and Cirno selected positions 22, 33 and 66 she will swap 'b' with 'y', 'c' with 'z' and 'f' with 'm'. The resulting strings will be "ayzdem" and "xbcklf".

Cirno then stole away the string without pair and shuffled all remaining strings in arbitrary order.

AquaMoon found the remaining n−1n−1 strings in complete disarray. Also, she remembers the initial nn strings. She wants to know which string was stolen, but she is not good at programming. Can you help her?

Input

This problem is made as interactive. It means, that your solution will read the input, given by the interactor. But the interactor will give you the full input at the beginning and after that, you should print the answer. So you should solve the problem, like as you solve the usual, non-interactive problem because you won't have any interaction process. The only thing you should not forget is to flush the output buffer, after printing the answer. Otherwise, you can get an "Idleness limit exceeded" verdict. Refer to the interactive problems guide for the detailed information about flushing the output buffer.

The input consists of multiple test cases. The first line contains a single integer tt (1≤t≤1001≤t≤100) — the number of test cases.

The first line of each test case contains two integers nn, mm (1≤n≤1051≤n≤105, 1≤m≤1051≤m≤105) — the number of strings and the length of each string, respectively.

The next nn lines each contain a string with length mm, describing the original nn strings. All string consists of lowercase Latin letters.

The next n−1n−1 lines each contain a string with length mm, describing the strings after Cirno exchanged and reordered them.

It is guaranteed that nn is odd and that the sum of n⋅mn⋅m over all test cases does not exceed 105105.

Hack format:

The first line should contain a single integer tt. After that tt test cases should follow in the following format:

The first line should contain two integers nn and mm.

The following nn lines should contain nn strings of length mm, describing the original strings.

The following n−12n−12 lines should describe the pairs. They should contain, in the following order: the index of the first string ii (1≤i≤n1≤i≤n), the index of the second string jj (1≤j≤n1≤j≤n, i≠ji≠j), the number of exchanged positions kk (1≤k≤m1≤k≤m), and the list of kk positions that are exchanged (kk distinct indices from 11 to mm in any order).

The final line should contain a permutation of integers from 11 to nn, describing the way the strings should be reordered. The strings will be placed in the order indices placed in this permutation, the stolen string index will be ignored.

Output

For each test case print a single line with the stolen string.

Example

input

Copy

3
3 5
aaaaa
bbbbb
ccccc
aaaaa
bbbbb
3 4
aaaa
bbbb
cccc
aabb
bbaa
5 6
abcdef
uuuuuu
kekeke
ekekek
xyzklm
xbcklf
eueueu
ayzdem
ukukuk

output

Copy

ccccc
cccc
kekeke

Note

In the first test case, "aaaaa" and "bbbbb" exchanged all positions, and "ccccc" is the stolen string.

In the second test case, "aaaa" and "bbbb" exchanged two first positions, and "cccc" is the stolen string.

This is the first test in the hack format:

3
3 5
aaaaa
bbbbb
ccccc
1 2 5 1 2 3 4 5
2 1 3
3 4
aaaa
bbbb
cccc
1 2 2 1 2
2 1 3
5 6
abcdef
uuuuuu
kekeke
ekekek
xyzklm
1 5 3 2 3 6
2 4 3 2 4 6
5 4 1 2 3

---------------------------------------------------------------------------------------------------------------------------------

题意说,给出n个字符串,选出来n-1个,任意配对,交换任意位置。形成新的n-1个串。

由于每个位置交换之后还是那一个位置,所以一个配对字符串的s[2](第三个元素)在配对之后,仍然在某个字符串的第三个位置。我们对这2*(n-1)对字符串每个位置进行异或。很显然,原字符串每个位置会消去交换之后的每个位置,两两抵消。

aaa

bbb   

---------------------    

aba

bab

图中相同位置相同颜色进行了抵消

这2*(n-1)个字符串异或之后,啥也没有了。所以可以直接把2*n-1个字符串每个位置异或,剩下的就是没有配对的

#include<iostream>
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<string>
#include<algorithm>
#include<cmath>
# include<map>
# include<iomanip>
# include<vector>
# pragma optimize(2)
using namespace std;
typedef long long int ll;
char  ans[100000+10];
int main ()
{
   int t;
   cin>>t;

   while(t--)
   {
       int n,len;
       cin>>n>>len;
       getchar();


       string s;
       cin>>s;

       for(int i=0;i<len;i++)
       {
           ans[i]=s[i];
       }

       for(int i=2;i<=2*n-1;i++)
       {
           cin>>s;

           for(int i=0;i<len;i++)
           {
               ans[i]^=s[i];
           }
       }

       for(int i=0;i<len;i++)
       {
           cout<<ans[i];
       }
       cout<<'\n';
   }
    return 0;
}

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

qinsanma and Code

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值