結果

問題 No.1896 Arrays and XOR Procedure 2
ユーザー siganaisiganai
提出日時 2022-04-09 17:33:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 186 ms / 2,000 ms
コード長 1,419 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 81,072 KB
最終ジャッジ日時 2024-11-29 17:42:56
合計ジャッジ時間 8,528 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
65,084 KB
testcase_01 AC 57 ms
66,076 KB
testcase_02 AC 57 ms
64,608 KB
testcase_03 AC 161 ms
79,552 KB
testcase_04 AC 155 ms
79,348 KB
testcase_05 AC 158 ms
80,148 KB
testcase_06 AC 157 ms
79,204 KB
testcase_07 AC 156 ms
79,596 KB
testcase_08 AC 158 ms
79,536 KB
testcase_09 AC 157 ms
79,488 KB
testcase_10 AC 165 ms
79,904 KB
testcase_11 AC 154 ms
79,544 KB
testcase_12 AC 158 ms
79,748 KB
testcase_13 AC 175 ms
80,768 KB
testcase_14 AC 171 ms
80,628 KB
testcase_15 AC 169 ms
80,280 KB
testcase_16 AC 170 ms
80,544 KB
testcase_17 AC 169 ms
80,252 KB
testcase_18 AC 142 ms
79,280 KB
testcase_19 AC 110 ms
78,072 KB
testcase_20 AC 168 ms
79,856 KB
testcase_21 AC 116 ms
78,124 KB
testcase_22 AC 182 ms
80,732 KB
testcase_23 AC 176 ms
80,532 KB
testcase_24 AC 178 ms
80,904 KB
testcase_25 AC 179 ms
80,620 KB
testcase_26 AC 179 ms
80,400 KB
testcase_27 AC 186 ms
81,072 KB
testcase_28 AC 157 ms
79,612 KB
testcase_29 AC 157 ms
79,540 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:
        xor = maa ^ mib
        if xor > maa:
            ans.append([2,aind,bind])
            heapq.heappush(heapa,[-maa,aind])
            heapq.heappush(heapb,[xor,bind])    
        elif xor < mib:
            ans.append([1,aind,bind])
            heapq.heappush(heapa,[-xor,aind])
            heapq.heappush(heapb,[mib,bind]) 
        else:
            ans.append([1,aind,bind])
            ans.append([2,aind,bind])
            heapq.heappush(heapa,[-xor,aind])
            heapq.heappush(heapb,[maa,bind])          
                 
print(len(ans))
for row in ans:
    print(*row)
    
0