|
||||||||||
Sylvester constructionTime Limit: 5000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 151 Accepted Submission(s): 45 Problem Description A Hadamard matrix of order n is an n * n matrix containing only 1s and -1s, called Hn, such that where is the n * n identity matrix. An interesting property of Hadamard matrices is that they have the maximum possible determinant of any n * n matrix with elements in the range [-1, 1]. Hadamard matrices have applications in errorcorrecting codes and weighing design problems. The Sylvester construction is a way to create a Hadamard matrix of size 2n given . can be constructed as: for example: and so on. In this problem you are required to print a part of a Hadamard matrix constructed in the way described above. Input The first number in the input is the number of test cases to follow. For each test case there are ve integers: n, x, y, w and h. n will be between 1 and 2^62 (inclusive) and will be a power of 2. x and y specify the upper left corner of the sub matrix to be printed, w and h specify the width and height respectively. Coordinates are zero based, so 0 <= x,y < n. You can assume that the sub matrix will t entirely inside the whole matrix and that 0 < w,h <= 20. There will be no more than 1000 test cases. Output For each test case print the sub matrix followed by an empty line. Sample Input
Sample Output
Source | ||||||||||
|