CF1138B.Circus

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Polycarp is a head of a circus troupe. There are nn — an even number — artists in the troupe. It is known whether the ii -th artist can perform as a clown (if yes, then ci=1c_i = 1 , otherwise ci=0c_i = 0 ), and whether they can perform as an acrobat (if yes, then ai=1a_i = 1 , otherwise ai=0a_i = 0 ).

Split the artists into two performances in such a way that:

  • each artist plays in exactly one performance,
  • the number of artists in the two performances is equal (i.e. equal to n2\frac{n}{2} ),
  • the number of artists that can perform as clowns in the first performance is the same as the number of artists that can perform as acrobats in the second performance.

输入格式

The first line contains a single integer nn ( 2n50002 \le n \le 5\,000 , nn is even) — the number of artists in the troupe.

The second line contains nn digits c1c2cnc_1 c_2 \ldots c_n , the ii -th of which is equal to 11 if the ii -th artist can perform as a clown, and 00 otherwise.

The third line contains nn digits a1a2ana_1 a_2 \ldots a_n , the ii -th of which is equal to 11 , if the ii -th artist can perform as an acrobat, and 00 otherwise.

输出格式

Print n2\frac{n}{2} distinct integers — the indices of the artists that should play in the first performance.

If there are multiple answers, print any.

If there is no solution, print a single integer 1-1 .

输入输出样例

  • 输入#1

    4
    0011
    0101
    

    输出#1

    1 4
    
  • 输入#2

    6
    000000
    111111
    

    输出#2

    -1
    
  • 输入#3

    4
    0011
    1100
    

    输出#3

    4 3
    
  • 输入#4

    8
    00100101
    01111100
    

    输出#4

    1 2 3 6
    

说明/提示

In the first example, one of the possible divisions into two performances is as follows: in the first performance artists 11 and 44 should take part. Then the number of artists in the first performance who can perform as clowns is equal to 11 . And the number of artists in the second performance who can perform as acrobats is 11 as well.

In the second example, the division is not possible.

In the third example, one of the possible divisions is as follows: in the first performance artists 33 and 44 should take part. Then in the first performance there are 22 artists who can perform as clowns. And the number of artists in the second performance who can perform as acrobats is 22 as well.

首页