結果

問題 No.1896 Arrays and XOR Procedure 2
ユーザー 👑 KazunKazun
提出日時 2022-04-08 22:18:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 100 ms / 2,000 ms
コード長 996 bytes
コンパイル時間 372 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 77,696 KB
最終ジャッジ日時 2024-05-06 07:49:33
合計ジャッジ時間 7,267 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 37 ms
51,840 KB
testcase_03 AC 72 ms
73,344 KB
testcase_04 AC 88 ms
77,440 KB
testcase_05 AC 91 ms
77,440 KB
testcase_06 AC 72 ms
73,728 KB
testcase_07 AC 89 ms
77,056 KB
testcase_08 AC 90 ms
77,056 KB
testcase_09 AC 89 ms
77,056 KB
testcase_10 AC 87 ms
77,184 KB
testcase_11 AC 100 ms
77,184 KB
testcase_12 AC 92 ms
77,696 KB
testcase_13 AC 83 ms
77,056 KB
testcase_14 AC 84 ms
76,928 KB
testcase_15 AC 85 ms
77,056 KB
testcase_16 AC 79 ms
76,800 KB
testcase_17 AC 82 ms
76,928 KB
testcase_18 AC 71 ms
70,784 KB
testcase_19 AC 58 ms
65,024 KB
testcase_20 AC 88 ms
76,928 KB
testcase_21 AC 57 ms
65,152 KB
testcase_22 AC 92 ms
76,800 KB
testcase_23 AC 91 ms
76,928 KB
testcase_24 AC 91 ms
77,312 KB
testcase_25 AC 88 ms
76,928 KB
testcase_26 AC 90 ms
76,800 KB
testcase_27 AC 89 ms
76,800 KB
testcase_28 AC 72 ms
73,344 KB
testcase_29 AC 72 ms
73,856 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