結果

問題 No.1896 Arrays and XOR Procedure 2
ユーザー 👑 KazunKazun
提出日時 2022-04-08 22:18:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 996 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 87,132 KB
実行使用メモリ 78,628 KB
最終ジャッジ日時 2023-08-19 00:47:52
合計ジャッジ時間 6,976 ms
ジャッジサーバーID
(参考情報)
judge14 / judge10
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
71,192 KB
testcase_01 AC 57 ms
71,532 KB
testcase_02 AC 59 ms
71,476 KB
testcase_03 AC 79 ms
78,152 KB
testcase_04 AC 93 ms
78,504 KB
testcase_05 AC 91 ms
78,564 KB
testcase_06 AC 79 ms
78,288 KB
testcase_07 AC 92 ms
78,628 KB
testcase_08 AC 92 ms
78,404 KB
testcase_09 AC 95 ms
78,544 KB
testcase_10 AC 92 ms
78,468 KB
testcase_11 AC 91 ms
78,568 KB
testcase_12 AC 90 ms
78,420 KB
testcase_13 AC 88 ms
78,416 KB
testcase_14 AC 87 ms
78,268 KB
testcase_15 AC 88 ms
78,272 KB
testcase_16 AC 87 ms
78,248 KB
testcase_17 AC 86 ms
78,160 KB
testcase_18 AC 88 ms
77,604 KB
testcase_19 AC 72 ms
77,044 KB
testcase_20 AC 92 ms
78,156 KB
testcase_21 AC 71 ms
76,952 KB
testcase_22 AC 95 ms
78,240 KB
testcase_23 AC 93 ms
78,448 KB
testcase_24 AC 94 ms
78,372 KB
testcase_25 AC 92 ms
78,280 KB
testcase_26 AC 92 ms
78,340 KB
testcase_27 AC 92 ms
78,328 KB
testcase_28 AC 79 ms
78,104 KB
testcase_29 AC 80 ms
78,116 KB
権限があれば一括ダウンロードができます

ソースコード

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))

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

assert check(AA,BB,Ans)
0