Double Knapsack

题意翻译

给你两个可重集 $A, B$,$A, B$ 的元素个数都为 $n$,它们中每个元素的大小 $x\in [1,n]$。请你分别找出 $A, B$ 的子集,使得它们中的元素之和相等。 $n\leq 10^6$。

题目描述

You are given two multisets $ A $ and $ B $ . Each multiset has exactly $ n $ integers each between $ 1 $ and $ n $ inclusive. Multisets may contain multiple copies of the same number. You would like to find a nonempty subset of $ A $ and a nonempty subset of $ B $ such that the sum of elements in these subsets are equal. Subsets are also multisets, i.e. they can contain elements with equal values. If no solution exists, print $ -1 $ . Otherwise, print the indices of elements in any such subsets of $ A $ and $ B $ that have the same sum.

输入输出格式

输入格式


The first line of the input contains a single integer $ n $ ( $ 1<=n<=1000000 $ ) — the size of both multisets. The second line contains $ n $ integers, denoting the elements of $ A $ . Each element will be between $ 1 $ and $ n $ inclusive. The third line contains $ n $ integers, denoting the elements of $ B $ . Each element will be between $ 1 $ and $ n $ inclusive.

输出格式


If there is no solution, print a single integer $ -1 $ . Otherwise, your solution should be printed on four lines. The first line should contain a single integer $ k_{a} $ , the size of the corresponding subset of $ A $ . The second line should contain $ k_{a} $ distinct integers, the indices of the subset of $ A $ . The third line should contain a single integer $ k_{b} $ , the size of the corresponding subset of $ B $ . The fourth line should contain $ k_{b} $ distinct integers, the indices of the subset of $ B $ . Elements in both sets are numbered from $ 1 $ to $ n $ . If there are multiple possible solutions, print any of them.

输入输出样例

输入样例 #1

10
10 10 10 10 10 10 10 10 10 10
10 9 8 7 6 5 4 3 2 1

输出样例 #1

1
2
3
5 8 10

输入样例 #2

5
4 4 3 3 3
2 2 2 2 5

输出样例 #2

2
2 3
2
3 5