結果

問題 No.1896 Arrays and XOR Procedure 2
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2022-04-14 12:15:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 508 ms / 2,000 ms
コード長 696 bytes
コンパイル時間 101 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,856 KB
最終ジャッジ日時 2024-06-06 14:20:32
合計ジャッジ時間 20,669 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 486 ms
44,360 KB
testcase_01 AC 489 ms
44,492 KB
testcase_02 AC 494 ms
44,056 KB
testcase_03 AC 499 ms
44,424 KB
testcase_04 AC 494 ms
44,736 KB
testcase_05 AC 504 ms
44,724 KB
testcase_06 AC 489 ms
44,472 KB
testcase_07 AC 502 ms
44,620 KB
testcase_08 AC 487 ms
44,168 KB
testcase_09 AC 508 ms
44,296 KB
testcase_10 AC 498 ms
44,168 KB
testcase_11 AC 491 ms
43,908 KB
testcase_12 AC 489 ms
44,168 KB
testcase_13 AC 483 ms
43,916 KB
testcase_14 AC 493 ms
44,040 KB
testcase_15 AC 487 ms
43,428 KB
testcase_16 AC 507 ms
43,916 KB
testcase_17 AC 497 ms
44,048 KB
testcase_18 AC 503 ms
44,232 KB
testcase_19 AC 473 ms
44,156 KB
testcase_20 AC 495 ms
44,268 KB
testcase_21 AC 478 ms
44,044 KB
testcase_22 AC 491 ms
44,588 KB
testcase_23 AC 494 ms
44,084 KB
testcase_24 AC 483 ms
44,212 KB
testcase_25 AC 495 ms
44,856 KB
testcase_26 AC 490 ms
44,724 KB
testcase_27 AC 489 ms
44,324 KB
testcase_28 AC 498 ms
44,036 KB
testcase_29 AC 490 ms
44,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def check(n,a,b,ans):
    for t,p,q in ans:
        if t==1:
            a[p]=a[p]^b[q]
        else:
            b[q]=a[p]^b[q]
    print(a)
    print(b)
    return max(a)<min(b)
def solv(n,a,b):
    import numpy as np
    ans=[]
    q=np.argmax(a)
    bit=1 # a[q]の最上位bit
    while bit<=a[q]:bit<<=1
    bit>>=1
    for i in range(n):
        if bit^b[i]>b[i]:
            ans.append([2,q,i])
    q=np.argmin(b)
    for i in range(n):
        if bit^a[i]<a[i]:
            ans.append([1,i,q])
    return ans

n=int(input())
a=list(map(int,input().split()))
b=list(map(int,input().split()))
ans=solv(n,a,b)
#print(check(n,a,b,ans))
print(len(ans))
for t,p,q in ans:
    print(t,p+1,q+1)
0