您的位置:首页 > 其它

【Codeforces】-701A-Cards(思维)

2016-08-05 21:50 381 查看
点击打开题目

A. Cards

time limit per test
1 second

memory limit per test
256 megabytes

input
standard input

output
standard output

There are n cards (n is even)
in the deck. Each card has a positive integer written on it. n / 2 people will play new card game. At the beginning of the game each
player gets two cards, each card is given to exactly one player.

Find the way to distribute cards such that the sum of values written of the cards will be equal for each player. It is guaranteed that it is always possible.

Input

The first line of the input contains integer n (2 ≤ n ≤ 100) —
the number of cards in the deck. It is guaranteed that n is even.

The second line contains the sequence of n positive integers a1, a2, ..., an (1 ≤ ai ≤ 100),
where ai is
equal to the number written on thei-th card.

Output

Print n / 2 pairs of integers, the i-th
pair denote the cards that should be given to the i-th player. Each card should be given to exactly one player. Cards are numbered in
the order they appear in the input.

It is guaranteed that solution exists. If there are several correct answers, you are allowed to print any of them.

Examples

input
6
1 5 7 4 4 3


output
1 3
6 2
4 5


input
4
10 10 10 10


output
1 2
3 4


Note

In the first sample, cards are distributed in such a way that each player has the sum of numbers written on his cards equal to 8.

In the second sample, all values ai are
equal. Thus, any distribution is acceptable.

题解:既然他保证存在是符合的,那么排一下序,前后各挑一个输出序号就好了。

#include<cstdio>
#include<cstring>
#include<queue>
#include<algorithm>
using namespace std;
#define CLR(a,b) memset(a,b,sizeof(a))
struct node
{
int num,ant;
}a[110];
bool cmp(node x,node y)
{
return x.ant<y.ant;
}
int main()
{
int n;
while(~scanf("%d",&n))
{
for(int i=1;i<=n;i++)
{
scanf("%d",&a[i].ant);
a[i].num=i;
}
sort(a+1,a+n+1,cmp);
for(int i=1;i<=(n/2);i++)
printf("%d %d\n",a[i].num,a[n+1-i].num);
}
return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: