CF618F.Double Knapsack
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
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 ka , the size of the corresponding subset of A . The second line should contain ka distinct integers, the indices of the subset of A .
The third line should contain a single integer kb , the size of the corresponding subset of B . The fourth line should contain kb 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