結果

問題 No.1896 Arrays and XOR Procedure 2
ユーザー 👑 KazunKazun
提出日時 2022-04-08 22:18:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 88 ms / 2,000 ms
コード長 996 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 77,440 KB
最終ジャッジ日時 2024-11-28 12:59:07
合計ジャッジ時間 6,102 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,840 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 37 ms
51,840 KB
testcase_03 AC 66 ms
73,088 KB
testcase_04 AC 88 ms
76,928 KB
testcase_05 AC 85 ms
77,440 KB
testcase_06 AC 66 ms
73,600 KB
testcase_07 AC 82 ms
77,404 KB
testcase_08 AC 85 ms
77,056 KB
testcase_09 AC 84 ms
77,124 KB
testcase_10 AC 86 ms
77,440 KB
testcase_11 AC 86 ms
76,928 KB
testcase_12 AC 83 ms
77,440 KB
testcase_13 AC 80 ms
77,212 KB
testcase_14 AC 80 ms
77,312 KB
testcase_15 AC 79 ms
76,800 KB
testcase_16 AC 77 ms
76,928 KB
testcase_17 AC 78 ms
77,312 KB
testcase_18 AC 68 ms
70,912 KB
testcase_19 AC 56 ms
65,408 KB
testcase_20 AC 86 ms
76,896 KB
testcase_21 AC 54 ms
65,024 KB
testcase_22 AC 86 ms
77,168 KB
testcase_23 AC 83 ms
76,928 KB
testcase_24 AC 84 ms
77,244 KB
testcase_25 AC 83 ms
76,672 KB
testcase_26 AC 86 ms
76,952 KB
testcase_27 AC 84 ms
76,800 KB
testcase_28 AC 65 ms
73,840 KB
testcase_29 AC 72 ms
73,216 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