了解freopen函数

这篇博客介绍了C语言中的freopen函数,用于解决测试数据输入问题,避免重复输入。该函数能实现标准流文件的重定向,将stdin、stdout或stderr指向指定文件,以方便测试和调试。
摘要由CSDN通过智能技术生成

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.


Input
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.
Output
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.


Examples
Input--------------------------(1)
3
20 30 10 30 20 10
Output
4 2
1 5
6 3
Input--------------------------(2)
1
1 2
Output
-1
**
C 代码

#include<stdio.h>
#include<algorithm>
using namespace std;
struct M
{
   
 int a;
 int b;
}p[1000000];
bool l1(M x
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值