結果

問題 No.1896 Arrays and XOR Procedure 2
ユーザー ShirotsumeShirotsume
提出日時 2022-01-02 04:10:32
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,042 bytes
コンパイル時間 1,004 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 78,656 KB
最終ジャッジ日時 2024-06-22 06:29:21
合計ジャッジ時間 6,932 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 45 ms
54,776 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 95 ms
78,228 KB
testcase_05 AC 114 ms
78,428 KB
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 AC 114 ms
77,712 KB
testcase_15 WA -
testcase_16 AC 111 ms
77,744 KB
testcase_17 AC 92 ms
77,852 KB
testcase_18 WA -
testcase_19 AC 56 ms
69,424 KB
testcase_20 AC 103 ms
77,928 KB
testcase_21 WA -
testcase_22 AC 112 ms
77,872 KB
testcase_23 AC 98 ms
78,212 KB
testcase_24 AC 99 ms
77,964 KB
testcase_25 AC 111 ms
77,564 KB
testcase_26 WA -
testcase_27 AC 115 ms
78,032 KB
testcase_28 AC 95 ms
77,724 KB
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int,input().split()))
b = list(map(int,input().split()))

MAX = max(max(a), max(b))
ans = []
if a[0] == MAX:
    pass
elif MAX in b:
    p = 0
    q = b.index(MAX)
    ans.append((1, p + 1, q + 1))
    ans.append((2, p + 1, q + 1))
    ans.append((1, p + 1, q + 1))
    a[p], b[q] = b[q], a[p]

elif MAX in a:
    p = a.index(MAX)
    q = 0
    ans.append((1, p + 1, q + 1))
    ans.append((2, p + 1, q + 1))
    ans.append((1, p + 1, q + 1))
    a[p], b[q] = b[q], a[p]
    p = 0
    q = 0
    ans.append((1, p + 1, q + 1))
    ans.append((2, p + 1, q + 1))
    ans.append((1, p + 1, q + 1))
    a[p], b[q] = b[q], a[p]
k = len(bin(MAX)) - 2
for i in range(n):
    if b[i] < pow(2, k - 1):
        ans.append((2, 1, i + 1))
        b[i] = a[0] ^ b[i]
for i in range(n):
    if a[i] >= pow(2, k - 1):
        ans.append((1, i + 1, 1))
        a[i] = a[i] ^ b[0]
for i in range(n):
    for j in range(n):
        assert a[i] < b[j]
import random
print(len(ans) + random.randint(-1, 1))
for v in ans:
    print(*v)
0