CF618F.Double Knapsack

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

You are given two multisets AA and BB . Each multiset has exactly nn integers each between 11 and nn inclusive. Multisets may contain multiple copies of the same number.

You would like to find a nonempty subset of AA and a nonempty subset of BB 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-1 . Otherwise, print the indices of elements in any such subsets of AA and BB that have the same sum.

输入格式

The first line of the input contains a single integer nn ( 1<=n<=10000001<=n<=1000000 ) — the size of both multisets.

The second line contains nn integers, denoting the elements of AA . Each element will be between 11 and nn inclusive.

The third line contains nn integers, denoting the elements of BB . Each element will be between 11 and nn inclusive.

输出格式

If there is no solution, print a single integer 1-1 . Otherwise, your solution should be printed on four lines.

The first line should contain a single integer kak_{a} , the size of the corresponding subset of AA . The second line should contain kak_{a} distinct integers, the indices of the subset of AA .

The third line should contain a single integer kbk_{b} , the size of the corresponding subset of BB . The fourth line should contain kbk_{b} distinct integers, the indices of the subset of BB .

Elements in both sets are numbered from 11 to nn . 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
    
首页