Solutions are presented as using the least memory and the fastest execution time. It also takes the top
10 most recent solutions from each language. If you want to limit to a specific index, click the
"Solved" button and go to that problem.
Problems
B'Implement a unitary operation on N qubits which is represented by a square matrix of size 2^N which has 2x2 blocks of non-zero elements on the main diagonal and zero elements everywhere else. For example, for N = 3 the matrix of the operation should have the following shape: Here X denotes a "non-zero" element of the matrix (a complex number which has the square of the absolute value greater than or equal to 10^{-5} ), and . denotes a "zero" element of the matrix (a complex number which has the square of the absolute value less than 10^{-5} ). The row and column indices of the matrix follow little endian format: the least significant bit of the index is stored first in the qubit array. Thus, the first column of the matrix gives you the coefficients of the basis states you 'll get if you apply the unitary to the |00..0 rangle basis state, the second column - to the |10..0 rangle basis state etc. You can use the DumpUnitary tool to get the coefficients of the matrix your unitary implements (up to relative phases between columns) and the corresponding pattern of Xs and .s. You have to implement an operation which takes an array of N ( 2 <= N <= 5 ) qubits as an input and applies the unitary transformation with the matrix of the described shape to it. If there are multiple unitaries which satisfy the requirements, you can implement any of them. The "output" of your operation is the pattern of the matrix coefficients implemented by it; you can see the testing harness in the UnitaryPatterns kata. Your code should have the following signature: You are not allowed to use measurements in your operation. '... |
Tutorials
Submissions
Submission Id |
Author(s) |
Index |
Submitted |
Verdict |
Language |
Test Set |
Tests Passed |
Time taken (ms) |
Memory Consumed (bytes) |
Tags |
Rating |
50739452 |
kribesk |
D1 |
March 3, 2019, 2:36 p.m. |
OK |
Q# |
TESTS |
4 |
467 |
0 |
|
|
50738647 |
lwz |
D1 |
March 3, 2019, 2:09 p.m. |
OK |
Q# |
TESTS |
4 |
467 |
0 |
|
|
50720285 |
Mesterli |
D1 |
March 3, 2019, 8:22 a.m. |
OK |
Q# |
TESTS |
4 |
467 |
0 |
|
|
50659106 |
cfk |
D1 |
March 1, 2019, 9:26 p.m. |
OK |
Q# |
TESTS |
4 |
467 |
0 |
|
|
50650693 |
mhss |
D1 |
March 1, 2019, 5:29 p.m. |
OK |
Q# |
TESTS |
4 |
467 |
0 |
|
|
50689230 |
carre |
D1 |
March 2, 2019, 2:54 p.m. |
OK |
Q# |
TESTS |
4 |
468 |
0 |
|
|
50656831 |
verngutz |
D1 |
March 1, 2019, 7:59 p.m. |
OK |
Q# |
TESTS |
4 |
468 |
0 |
|
|
50655520 |
dwai009 |
D1 |
March 1, 2019, 7:23 p.m. |
OK |
Q# |
TESTS |
4 |
468 |
0 |
|
|
50653958 |
1021839 |
D1 |
March 1, 2019, 6:45 p.m. |
OK |
Q# |
TESTS |
4 |
468 |
0 |
|
|
50649777 |
Snipx |
D1 |
March 1, 2019, 5:10 p.m. |
OK |
Q# |
TESTS |
4 |
468 |
0 |
|
|
remove filters
Back to search problems