結果
問題 | No.1896 Arrays and XOR Procedure 2 |
ユーザー | Shirotsume |
提出日時 | 2022-03-20 01:56:23 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 579 ms / 2,000 ms |
コード長 | 1,717 bytes |
コンパイル時間 | 2,292 ms |
コンパイル使用メモリ | 79,296 KB |
実行使用メモリ | 64,992 KB |
最終ジャッジ日時 | 2024-10-07 07:48:23 |
合計ジャッジ時間 | 19,659 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 139 ms
54,204 KB |
testcase_01 | AC | 136 ms
54,308 KB |
testcase_02 | AC | 134 ms
53,980 KB |
testcase_03 | AC | 472 ms
59,412 KB |
testcase_04 | AC | 566 ms
60,332 KB |
testcase_05 | AC | 579 ms
60,552 KB |
testcase_06 | AC | 480 ms
59,844 KB |
testcase_07 | AC | 576 ms
60,216 KB |
testcase_08 | AC | 545 ms
64,992 KB |
testcase_09 | AC | 537 ms
60,280 KB |
testcase_10 | AC | 531 ms
60,104 KB |
testcase_11 | AC | 544 ms
60,200 KB |
testcase_12 | AC | 543 ms
60,652 KB |
testcase_13 | AC | 496 ms
60,616 KB |
testcase_14 | AC | 501 ms
59,848 KB |
testcase_15 | AC | 496 ms
59,808 KB |
testcase_16 | AC | 497 ms
60,448 KB |
testcase_17 | AC | 491 ms
59,860 KB |
testcase_18 | AC | 386 ms
58,348 KB |
testcase_19 | AC | 329 ms
57,416 KB |
testcase_20 | AC | 432 ms
59,888 KB |
testcase_21 | AC | 329 ms
57,552 KB |
testcase_22 | AC | 448 ms
59,692 KB |
testcase_23 | AC | 451 ms
60,276 KB |
testcase_24 | AC | 488 ms
60,032 KB |
testcase_25 | AC | 473 ms
59,708 KB |
testcase_26 | AC | 469 ms
59,972 KB |
testcase_27 | AC | 453 ms
59,788 KB |
testcase_28 | AC | 463 ms
60,164 KB |
testcase_29 | AC | 466 ms
60,448 KB |
ソースコード
import java.util.ArrayList; import java.util.Scanner; public class Main { public static int arrayMax(int[] a){ int ret = 0; for(int i = 0; i < a.length; i++){ ret = Math.max(a[i],ret); } return ret; } public static void query(ArrayList<ArrayList<Integer>> ans, int t, int p, int q, int[] a, int[] b){ ArrayList<Integer> pro = new ArrayList<>(); pro.add(t); pro.add(p + 1); pro.add(q + 1); ans.add(pro); int temp = a[p] ^ b[q]; if(t == 1) a[p] = temp; else b[q] = temp; } public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int[] a = new int[n]; int[] b = new int[n]; for(int i = 0; i < n; i++) a[i] = sc.nextInt(); for(int i = 0;i < n; i++) b[i] = sc.nextInt(); int MAX = Math.max(arrayMax(a), arrayMax(b)); ArrayList<ArrayList<Integer>> ans = new ArrayList<>(); int ind = 0; int inbflag = -1; for(int i = 0; i < n; i++) if (b[i] == MAX) inbflag = i; if (inbflag == -1){ for(int i = 0;i < n; i++){ if (a[i] == MAX){ ind = i; break; } } } else{ ind = 0; query(ans, 1, ind, inbflag, a, b); query(ans, 2, ind, inbflag, a, b); query(ans, 1, ind, inbflag, a, b); } int now = 1; for(int i = 0; i < 30; i++){ if (now <= MAX && 2 * now > MAX) break; now *= 2; } for(int i = 0; i < n; i++){ if (b[i] < now) query(ans, 2, ind, i, a, b); } for(int i = 0; i < n; i++){ if (a[i] >= now) query(ans, 1, i, 0, a, b); } System.out.println(ans.size()); for(int i = 0; i < ans.size(); i++){ ArrayList<Integer> foo = ans.get(i); int t = foo.get(0); int p = foo.get(1); int q = foo.get(2); System.out.printf("%d %d %d\n",t, p, q); } } }