zoj 3432 异或

来源:互联网 发布:linux 查看 arp列表 编辑:程序博客网 时间:2024/05/16 20:28

用了 map 爆炸了 

本来想用字典树,后来看了一下别人怎么解决的 结果 ......

#include <iostream>#include <stdio.h>#include <string.h>#include <algorithm>#include <map>using namespace std;#define maxn 3005#define ll long longchar ch[10];char ans[10];int n;int main(){    while(scanf("%d\n",&n)!=EOF)    {        memset(ans,0,sizeof(ans));        for(int i=0;i<2*n-1;i++)        {            gets(ch);            for(int j=0;j<7;j++)            {                ans[j]^=ch[j];            }        }        for(int i=0;i<7;i++)        {            printf("%c",ans[i]);        }        printf("\n");    }    return 0;}

0 0
原创粉丝点击