import sys import heapq as hq from collections import defaultdict, Counter dd = defaultdict(list) cter = Counter() q = [] n, k = [int(c) for c in input().strip().split(" ")] arr1 = reversed([int(c) for c in input().strip().split(" ")]) arr1 = [c for c in arr1] arr2 = reversed([int(c) for c in input(...