CF254A.Cards with Numbers
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Petya has got 2n cards, each card contains some integer. The numbers on the cards can be the same. Let's index all cards by consecutive integers from 1 to 2n . We'll denote the number that is written on a card with number i , as ai . In order to play one entertaining game with his friends, Petya needs to split the cards into pairs so that each pair had equal numbers on the cards. Help Petya do that.
输入格式
The first line contains integer n ( 1<=n<=3⋅105 ). The second line contains the sequence of 2n positive integers a1,a2,...,a2n ( 1<=ai<=5000 ) — the numbers that are written on the cards. The numbers on the line are separated by single spaces.
输出格式
If it is impossible to divide the cards into pairs so that cards in each pair had the same numbers, print on a single line integer -1. But if the required partition exists, then print n pairs of integers, a pair per line — the indices of the cards that form the pairs.
Separate the numbers on the lines by spaces. You can print the pairs and the numbers in the pairs in any order. If there are multiple solutions, print any of them.
输入输出样例
输入#1
3 20 30 10 30 20 10
输出#1
4 2 1 5 6 3
输入#2
1 1 2
输出#2
-1