結果

問題 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  
実行時間 611 ms / 2,000 ms
コード長 696 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,984 KB
最終ジャッジ日時 2024-12-24 06:22:38
合計ジャッジ時間 20,587 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 480 ms
43,980 KB
testcase_01 AC 481 ms
44,108 KB
testcase_02 AC 486 ms
44,364 KB
testcase_03 AC 490 ms
44,424 KB
testcase_04 AC 502 ms
44,868 KB
testcase_05 AC 505 ms
44,984 KB
testcase_06 AC 502 ms
44,600 KB
testcase_07 AC 507 ms
44,744 KB
testcase_08 AC 606 ms
44,680 KB
testcase_09 AC 485 ms
44,040 KB
testcase_10 AC 494 ms
44,424 KB
testcase_11 AC 493 ms
44,428 KB
testcase_12 AC 484 ms
44,556 KB
testcase_13 AC 489 ms
44,176 KB
testcase_14 AC 505 ms
44,164 KB
testcase_15 AC 503 ms
43,684 KB
testcase_16 AC 490 ms
44,432 KB
testcase_17 AC 503 ms
44,056 KB
testcase_18 AC 486 ms
44,368 KB
testcase_19 AC 490 ms
44,032 KB
testcase_20 AC 505 ms
44,780 KB
testcase_21 AC 482 ms
44,288 KB
testcase_22 AC 498 ms
44,844 KB
testcase_23 AC 496 ms
44,208 KB
testcase_24 AC 487 ms
44,720 KB
testcase_25 AC 492 ms
44,724 KB
testcase_26 AC 495 ms
44,472 KB
testcase_27 AC 503 ms
44,964 KB
testcase_28 AC 496 ms
44,552 KB
testcase_29 AC 611 ms
44,744 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