結果

問題 No.1896 Arrays and XOR Procedure 2
ユーザー siganaisiganai
提出日時 2022-04-09 17:20:19
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,160 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 82,724 KB
最終ジャッジ日時 2024-05-07 04:20:18
合計ジャッジ時間 8,220 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
65,140 KB
testcase_01 AC 55 ms
64,120 KB
testcase_02 AC 53 ms
64,284 KB
testcase_03 WA -
testcase_04 AC 152 ms
80,680 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 164 ms
81,224 KB
testcase_09 AC 165 ms
80,812 KB
testcase_10 AC 171 ms
80,908 KB
testcase_11 AC 164 ms
81,096 KB
testcase_12 AC 169 ms
81,016 KB
testcase_13 AC 195 ms
81,832 KB
testcase_14 AC 191 ms
81,804 KB
testcase_15 AC 189 ms
81,204 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 113 ms
78,240 KB
testcase_19 AC 99 ms
78,204 KB
testcase_20 AC 130 ms
79,744 KB
testcase_21 AC 100 ms
78,556 KB
testcase_22 AC 140 ms
79,928 KB
testcase_23 AC 143 ms
79,972 KB
testcase_24 AC 142 ms
79,908 KB
testcase_25 AC 143 ms
80,360 KB
testcase_26 AC 140 ms
80,148 KB
testcase_27 AC 135 ms
79,588 KB
testcase_28 AC 149 ms
79,468 KB
testcase_29 AC 148 ms
79,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env PyPy3

from collections import Counter, defaultdict, deque
import itertools
import re
import math
from functools import reduce
import operator
import bisect
import heapq
import functools
mod=10**9+7

import sys
input=sys.stdin.readline

n=int(input())
a=list(map(int,input().split()))
heapa = []
b=list(map(int,input().split()))
heapb = []
for i in range(n):
    heapa.append([-a[i],i+1])
    heapb.append([b[i],i+1])
heapq.heapify(heapa)
heapq.heapify(heapb)
ans = []
cnt = 0
while True:
    maa,aind = heapq.heappop(heapa)
    maa = -maa
    mib,bind = heapq.heappop(heapb)
    #print(maa,mib)
    if maa < mib:
        break
    if maa == mib:
        ans.append([1,aind,bind])
        #a[aind-1] ^= b[bind-1]
        heapq.heappush(heapa,[0,aind])
        heapq.heappush(heapb,[maa,bind])       
    else:
        ans.append([1,aind,bind])
        #a[aind-1] ^= b[bind-1]
        ans.append([2,aind,bind])
        #b[bind-1] ^= a[aind-1]
        ans.append([1,aind,bind])
        #a[aind-1] ^= b[bind-1]
        heapq.heappush(heapa,[-mib,aind])
        heapq.heappush(heapb,[maa,bind])  
print(len(ans))
for row in ans:
    print(*row)
    
0