|
W ramach naszej witryny stosujemy pliki cookies w celu świadczenia Państwu usług na najwyższym poziomie, w tym w sposób dostosowany
do indywidualnych potrzeb. Korzystanie z witryny bez zmiany ustawień dotyczących cookies oznacza, że będą one zamieszczane w Państwa
urządzeniu końcowym. Możecie Państwo dokonać w każdym czasie zmiany ustawień dotyczących cookies w ustawieniach swojej przeglądarki.
|
|
|
|
|
SPOJ Problem Set (classical)
5833. XOR Rounds
Problem code: XORROUND
|
You are given a cyclic array A having N numbers. In an XOR round, each element of the array A is replaced by the bitwise XOR (Exclusive OR) of itself, the previous element, and the next element in the array. All operations take place simultaneously. Can you calculate A after K such XOR rounds ?
Input
The first line contains the number of test cases T (T <= 50). There follow 2T lines, 2 per test case. The first line contains two space seperated integers N (3 <= N <= 500) and K (1 <= K <= 1000000000). The next line contains N space seperated integers Ai (0 <= Ai <= 1000000000), which are the initial values of the elements in array A.
Output
Output T lines, one per test case. For each test case, output a space seperated list of N integers, specifying the contents of array A after K XOR rounds.
Example
Sample Input : 2 3 1 1 2 3 5 100 1 11 111 1111 11111 Sample Output : 0 0 0 11117 101 1075 12127 12081
| Added by: | Varun Jalan |
| Date: | 2010-01-11 |
| Time limit: | 10s
|
| Source limit: | 50000B |
| Memory limit: | 256MB |
| Cluster: |
Pyramid (Intel Pentium III 733 MHz)
|
| Languages: | All except: NODEJS PERL 6 |
| Resource: | Own Problem, used for Codechef Snackdown http://www.codechef.com/ |
|
|
|
|