結果

問題 No.1896 Arrays and XOR Procedure 2
ユーザー 👑 KazunKazun
提出日時 2022-04-08 22:17:11
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 980 bytes
コンパイル時間 345 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 77,568 KB
最終ジャッジ日時 2024-05-06 07:47:55
合計ジャッジ時間 5,192 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def max_msb(C):
    k=-1; I=-1
    for i,c in enumerate(C[1:],1):
        if c.bit_length()>k:
            k=c.bit_length()
            I=i
    return k,I

def check(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]
    return max(A[1:])<min(B[1:])
#==================================================

N=int(input())
A=[-1]+list(map(int,input().split()))
B=[-1]+list(map(int,input().split()))

AA=A.copy(); BB=B.copy()

s,i=max_msb(A)
t,j=max_msb(B)

Ans=[]
if s<t:
    Ans.append((1,i,j))
    A[i]=A[i]^B[j]
    s=t

#==================================================
#Phase 1
for k in range(1,N+1):
    if B[k].bit_length()<s:
        Ans.append((2,i,k))

#==================================================
#Phase 2
for k in range(1,N+1):
    if A[k].bit_length()==s:
        Ans.append((1,k,1))

#==================================================
for T,A,B in Ans:
    print(T,A,B)

assert check(AA,BB,Ans)
0