Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.util.*;
- import java.io.*;
- import java.text.*;
- public class Main{
- //SOLUTION BEGIN
- //Into the Hardware Mode
- void pre() throws Exception{}
- void solve(int TC)throws Exception{
- int n = ni();
- if(n%2 == 0)pn("NO");
- else{
- pn("YES");
- boolean[][] win = new boolean[n][n];
- for(int i = 0; i< n; i++)
- for(int j = i+1; j< i+1+(n-1)/2; j++)
- win[i][j%n] = true;
- for(int i = 0; i< n; i++)
- for(int j = i+1; j< n; j++)
- hold(win[i][j] != win[j][i]);
- for(int i = 0; i< n; i++){
- for(int j = 0; j< n; j++)p(win[i][j]?1:0);pn("");
- }
- }
- }
- //SOLUTION END
- void hold(boolean b)throws Exception{if(!b)throw new Exception("Hold right there, Sparky!");}
- void exit(boolean b){if(!b)System.exit(0);}
- long IINF = (long)1e18, mod = (long)1e9+7;
- final int INF = (int)1e9, MX = (int)2e6+5;
- DecimalFormat df = new DecimalFormat("0.0000000");
- double PI = 3.141592653589793238462643383279502884197169399, eps = 1e-7;
- static boolean multipleTC = true, memory = false, fileIO = false;
- FastReader in;PrintWriter out;
- void run() throws Exception{
- if(fileIO){
- in = new FastReader("C:/users/user/desktop/inp.in");
- out = new PrintWriter("C:/users/user/desktop/out.out");
- }else {
- in = new FastReader();
- out = new PrintWriter(System.out);
- }
- //Solution Credits: Taranpreet Singh
- int T = (multipleTC)?ni():1;
- pre();
- for(int t = 1; t<= T; t++)solve(t);
- out.flush();
- out.close();
- }
- public static void main(String[] args) throws Exception{
- if(memory)new Thread(null, new Runnable() {public void run(){try{new Main().run();}catch(Exception e){e.printStackTrace();}}}, "1", 1 << 28).start();
- else new Main().run();
- }
- int find(int[] set, int u){return set[u] = (set[u] == u?u:find(set, set[u]));}
- int digit(long s){int ans = 0;while(s>0){s/=10;ans++;}return ans;}
- long gcd(long a, long b){return (b==0)?a:gcd(b,a%b);}
- int gcd(int a, int b){return (b==0)?a:gcd(b,a%b);}
- int bit(long n){return (n==0)?0:(1+bit(n&(n-1)));}
- void p(Object o){out.print(o);}
- void pn(Object o){out.println(o);}
- void pni(Object o){out.println(o);out.flush();}
- String n()throws Exception{return in.next();}
- String nln()throws Exception{return in.nextLine();}
- int ni()throws Exception{return Integer.parseInt(in.next());}
- long nl()throws Exception{return Long.parseLong(in.next());}
- double nd()throws Exception{return Double.parseDouble(in.next());}
- class FastReader{
- BufferedReader br;
- StringTokenizer st;
- public FastReader(){
- br = new BufferedReader(new InputStreamReader(System.in));
- }
- public FastReader(String s) throws Exception{
- br = new BufferedReader(new FileReader(s));
- }
- String next() throws Exception{
- while (st == null || !st.hasMoreElements()){
- try{
- st = new StringTokenizer(br.readLine());
- }catch (IOException e){
- throw new Exception(e.toString());
- }
- }
- return st.nextToken();
- }
- String nextLine() throws Exception{
- String str = "";
- try{
- str = br.readLine();
- }catch (IOException e){
- throw new Exception(e.toString());
- }
- return str;
- }
- }
- }
Add Comment
Please, Sign In to add comment