Rock... Paper!
After Karen have found the deterministic winning (losing?) strategy for rock-paper-scissors, her brother, Koyomi, comes up with a new game as a substitute. The game works as follows.
A positive integer n is decided first. Both Koyomi and Karen independently choose n distinct positive integers, denoted by x1, x2, ..., xn and y1, y2, ..., yn respectively. They reveal their sequences, and repeat until all of 2n integers become distinct, which is the only final state to be kept and considered.
Then they count the number of ordered pairs (i, j) (1 ≤ i, j ≤ n) such that the value xi xor yj equals to one of the 2n integers. Here xormeans the bitwise exclusive or operation on two integers, and is denoted by operators ^ and/or xor in most programming languages.
Karen claims a win if the number of such pairs is even, and Koyomi does otherwise. And you're here to help determine the winner of their latest game.
The first line of input contains a positive integer n (1 ≤ n ≤ 2 000) — the length of both sequences.
The second line contains n space-separated integers x1, x2, ..., xn (1 ≤ xi ≤ 2·106) — the integers finally chosen by Koyomi.
The third line contains n space-separated integers y1, y2, ..., yn (1 ≤ yi ≤ 2·106) — the integers finally chosen by Karen.
Input guarantees that the given 2n integers are pairwise distinct, that is, no pair (i, j) (1 ≤ i, j ≤ n) exists such that one of the following holds: xi = yj; i ≠ j and xi = xj; i ≠ j and yi = yj.
Output one line — the name of the winner, that is, "Koyomi" or "Karen" (without quotes). Please be aware of the capitalization.
3 1 2 3 4 5 6
Karen
5 2 4 6 8 10 9 7 5 3 1
Karen
In the first example, there are 6 pairs satisfying the constraint: (1, 1), (1, 2), (2, 1), (2, 3), (3, 2) and (3, 3). Thus, Karen wins since 6 is an even number.
In the second example, there are 16 such pairs, and Karen wins again.
每次读题都要读半天 - -、
题意:输入n,两行n个数,上行和下行元素异或值可能在这两行中出现,求出现的次数是偶数还是奇数。
#include<bits/stdc++.h>
using namespace std;
const int N = 2005;
int a[N],b[N];
int main()
{
int n,i,j,sum=0;
cin>>n;
for(i=1; i<=n; i++)
scanf("%d",&a[i]);
sort(a+1,a+1+n);
for(i=1; i<=n; i++)
scanf("%d",&b[i]);
sort(b+1,b+1+n);
for(i=1; i<=n; i++)
for(j=1; j<=n; j++)
{
if(binary_search(a+1,a+1+n,a[i]^b[j])||binary_search(b+1,b+1+n,a[i]^b[j]))
sum++;
}
if(sum&1)
puts("Koyomi");
else
puts("Karen");
return 0;
}
其实想通了一定是偶数次,因为a^b=c,则b^c=a