ZOJ 3432  Find the Lost Sock

来源:互联网 发布:mac mail qq企业邮箱 编辑:程序博客网 时间:2024/04/29 16:22
E - Find the Lost Sock p
Time Limit: 2000MSMemory Limit: 65536K64bit IO Format: %lld & %llu

[Submit]  [GoBack]   [Status]

Description

Alice bought a lot of pairs of socks yesterday.But when she went home, she found that she has lost one of them.Each sock has a name which contains exactly 7 charaters.

ZOJ <wbr>3432 <wbr> <wbr>Find <wbr>the <wbr>Lost <wbr>Sock

Alice wants to know which sock she has lost. Maybe you can helpher.

Input

There are multiple cases. The first line containing an integern (1 <= n <=1000000) indicates that Alice bought n pairs of socks. Forthe following 2*n-1 lines, each line is a string with 7charaters indicating the name of the socks that Alice tookback.

Output

The name of the lost sock.

Sample Input

2aabcdefbzyxwvubzyxwvu4aqwertyeas fghaqwertyeasdfgheasdfghaqwertyaqwerty20x0abcd0ABCDEF0x0abcd

Sample Output

aabcdefeas fgh0ABCDEF

Hint

Because of HUGE input, scanf is recommended. 

这题一般的解法基本都会超时的,所以不要想暴力解决,刚开学的时候学了个异或运算,没想到竟然也能用上了,呵呵(袜子真的挺好看的!)

代码:

#include<stdio.h>

#include<string.h>

int num[8];

char s[8];

int main()

{

int n,i,k;

while(scanf("%d",&n)!=EOF)

{

getchar();

memset(num,0,sizeof(num));

k=0;

n=n*2-2;

gets(s);

for(i=0;i<7;i++)

{

k=s[i];

num[i]=k;

}

while(n--)

{

gets(s);

for(i=0;i<7;i++)

{

k=s[i];

num[i]=num[i]^k;

}

}

for(k=0;k<7;k++)

printf("%c",num[k]);

printf("\n");

}

return 0;

}


原创粉丝点击