結果

問題 No.1896 Arrays and XOR Procedure 2
ユーザー ripityripity
提出日時 2022-04-15 20:29:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 352 ms / 2,000 ms
コード長 2,229 bytes
コンパイル時間 2,413 ms
コンパイル使用メモリ 80,180 KB
実行使用メモリ 48,488 KB
最終ジャッジ日時 2024-06-07 02:16:52
合計ジャッジ時間 15,914 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 174 ms
42,320 KB
testcase_01 AC 172 ms
42,624 KB
testcase_02 AC 172 ms
42,632 KB
testcase_03 AC 302 ms
48,092 KB
testcase_04 AC 352 ms
48,260 KB
testcase_05 AC 351 ms
48,232 KB
testcase_06 AC 350 ms
48,012 KB
testcase_07 AC 345 ms
47,148 KB
testcase_08 AC 316 ms
47,356 KB
testcase_09 AC 315 ms
48,472 KB
testcase_10 AC 317 ms
47,448 KB
testcase_11 AC 317 ms
47,772 KB
testcase_12 AC 326 ms
47,048 KB
testcase_13 AC 306 ms
48,424 KB
testcase_14 AC 311 ms
47,992 KB
testcase_15 AC 313 ms
48,044 KB
testcase_16 AC 310 ms
48,264 KB
testcase_17 AC 306 ms
47,404 KB
testcase_18 AC 297 ms
46,460 KB
testcase_19 AC 263 ms
45,188 KB
testcase_20 AC 323 ms
47,224 KB
testcase_21 AC 266 ms
44,804 KB
testcase_22 AC 341 ms
48,428 KB
testcase_23 AC 347 ms
48,460 KB
testcase_24 AC 349 ms
47,888 KB
testcase_25 AC 351 ms
48,488 KB
testcase_26 AC 347 ms
48,348 KB
testcase_27 AC 340 ms
47,492 KB
testcase_28 AC 299 ms
48,012 KB
testcase_29 AC 331 ms
47,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
    
    public static Scanner sc = new Scanner(System.in);
    public static PrintWriter pw = new PrintWriter(System.out);
    
    public static void main(String[] args) {
        
        int N = sc.nextInt();
        int[] a = new int[N];
        int[] b = new int[N];
        int[] x = new int[N];
        int[] y = new int[N];
        int xmax = -1;
        int ymax = -1;
        int p = 0;
        int q = 0;
        LinkedList<Tuple> que = new LinkedList<>();
        
        for( int i = 0; i < N; i++ ) {
            a[i] = sc.nextInt();
            while( (a[i]>>x[i]) > 0 ) x[i]++;
            xmax = Math.max(xmax,x[i]);
        }
        
        for( int i = 0; i < N; i++ ) {
            b[i] = sc.nextInt();
            while( (b[i]>>y[i]) > 0 ) y[i]++;
            ymax = Math.max(ymax,y[i]);
        }
        
        if( xmax >= ymax ) {
            for( int i = 0; i < N; i++ ) {
                if( x[i] == xmax ) p = i;
            }
            for( q = 0; q < N; q++ ) {
                if( y[q] < x[p] ) {
                    b[q] = a[p]^b[q];
                    que.offer(new Tuple(2,p+1,q+1));
                }
            }
            for( p = 0; p < N; p++ ) {
                if( x[p] == xmax ) {
                    a[p] = a[p]^b[0];
                    que.offer(new Tuple(1,p+1,1));
                }
            }
        }else {
            for( int i = 0; i < N; i++ ) {
                if( y[i] == ymax ) q = i;
            }
            que.offer(new Tuple(1,1,q+1));
            a[0] = a[0]^b[q];
            for( q = 0; q < N; q++ ) {
                if( y[q] < ymax ) {
                    b[q] = a[0]^b[q];
                    que.offer(new Tuple(2,1,q+1));
                }
            }
            que.offer(new Tuple(1,1,1));
            a[0] = a[0]^b[0];
        }
        
        pw.println(que.size());
        for( Tuple t : que ) {
            pw.println(t.a+" "+t.b+" "+t.c);
        }
        
        pw.flush();
        
    }
    
}

class Tuple {
    
    int a, b, c;
    
    public Tuple(int a, int b, int c) {
        
        this.a = a;
        this.b = b;
        this.c = c;
        
    }
    
}
0