結果

問題 No.1896 Arrays and XOR Procedure 2
ユーザー とりゐとりゐ
提出日時 2021-12-23 02:59:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 830 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,140 KB
実行使用メモリ 77,404 KB
最終ジャッジ日時 2024-09-13 10:07:13
合計ジャッジ時間 5,928 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,036 KB
testcase_01 AC 39 ms
52,408 KB
testcase_02 AC 39 ms
52,136 KB
testcase_03 AC 66 ms
74,116 KB
testcase_04 AC 85 ms
77,404 KB
testcase_05 AC 80 ms
77,020 KB
testcase_06 AC 66 ms
73,568 KB
testcase_07 AC 82 ms
76,960 KB
testcase_08 AC 74 ms
77,012 KB
testcase_09 AC 74 ms
76,832 KB
testcase_10 AC 74 ms
76,848 KB
testcase_11 AC 73 ms
77,220 KB
testcase_12 AC 74 ms
77,048 KB
testcase_13 AC 74 ms
77,036 KB
testcase_14 AC 77 ms
77,084 KB
testcase_15 AC 72 ms
76,668 KB
testcase_16 AC 68 ms
74,676 KB
testcase_17 AC 68 ms
74,432 KB
testcase_18 AC 65 ms
70,868 KB
testcase_19 AC 56 ms
65,036 KB
testcase_20 AC 84 ms
76,920 KB
testcase_21 AC 56 ms
64,904 KB
testcase_22 AC 71 ms
75,108 KB
testcase_23 AC 69 ms
73,972 KB
testcase_24 AC 70 ms
75,148 KB
testcase_25 AC 84 ms
77,172 KB
testcase_26 AC 84 ms
77,040 KB
testcase_27 AC 70 ms
75,436 KB
testcase_28 AC 66 ms
72,856 KB
testcase_29 AC 66 ms
73,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def swap(p,q):
  # A_p と B_q を swap
  operation.append((1,p,q))
  operation.append((2,p,q))
  operation.append((1,p,q))
  a[p],b[q]=b[q],a[p]

def swapA(i,j):
  # A_i と A_j を swap
  swap(i,0)
  swap(j,0)
  swap(i,0)

n=int(input())
a=list(map(int,input().split()))
b=list(map(int,input().split()))
operation=[]

mx=0
id='A'
id2=0
for i in range(n):
  if a[i]>mx:
    mx=a[i]
    id='A'
    id2=i
  if b[i]>mx:
    mx=b[i]
    id='B'
    id2=i

# A_0 = mx となるようにする
if id=='A':
  if id2!=0:
    swapA(0,id2)
else:
  swap(0,id2)

max_bit=len(bin(mx))-3
for i in range(n):
  if (b[i]>>max_bit)&1==0:
    operation.append((2,0,i))
    b[i]=b[i]^a[0]

for i in range(n):
  if (a[i]>>max_bit)&1==1:
    operation.append((1,i,0))
    a[i]=a[i]^b[0]

print(len(operation))
for t,p,q in operation:
  print(t,p+1,q+1)
0