結果

問題 No.1896 Arrays and XOR Procedure 2
ユーザー roarisroaris
提出日時 2022-04-22 17:16:48
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 793 bytes
コンパイル時間 297 ms
コンパイル使用メモリ 82,488 KB
実行使用メモリ 79,364 KB
最終ジャッジ日時 2024-06-23 22:08:33
合計ジャッジ時間 6,498 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,608 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 39 ms
52,224 KB
testcase_03 RE -
testcase_04 AC 84 ms
78,208 KB
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 AC 89 ms
77,696 KB
testcase_09 AC 96 ms
77,700 KB
testcase_10 AC 89 ms
77,808 KB
testcase_11 AC 90 ms
77,696 KB
testcase_12 AC 89 ms
77,696 KB
testcase_13 AC 94 ms
77,908 KB
testcase_14 AC 93 ms
78,252 KB
testcase_15 AC 90 ms
77,952 KB
testcase_16 RE -
testcase_17 RE -
testcase_18 AC 78 ms
77,312 KB
testcase_19 AC 63 ms
70,016 KB
testcase_20 AC 84 ms
77,568 KB
testcase_21 AC 68 ms
70,528 KB
testcase_22 AC 89 ms
77,696 KB
testcase_23 AC 85 ms
77,696 KB
testcase_24 AC 93 ms
77,184 KB
testcase_25 AC 89 ms
77,408 KB
testcase_26 AC 90 ms
77,184 KB
testcase_27 AC 88 ms
77,388 KB
testcase_28 AC 77 ms
77,184 KB
testcase_29 AC 79 ms
77,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
l = []

for i in range(N):
    l.append((A[i], i))
    l.append((B[i], i+N))

l.sort()
swap_a, swap_b = [], []

for _, i in l[:N]:
    if i>=N:
        swap_b.append(i-N)

for _, i in l[N:]:
    if i<N:
        swap_a.append(i)

ans = []

for i, j in zip(swap_a, swap_b):
    ans.append((1, i+1, j+1))
    ans.append((2, i+1, j+1))
    ans.append((1, i+1, j+1))
    A[i], B[j] = B[j], A[i]

M = max(A)
m = min(B)

if M==m:
    for i in range(N):
        if B[i]==m:
            for j in range(N):
                if A[j]==M:
                    ans.append((1, j+1, i+1))
            break

assert len(ans)<=10000
print(len(ans))

for ans_i in ans:
    print(*ans_i)
0