您的位置:首页 > 大数据 > 人工智能

CodeForces 282B Painting Eggs

2016-09-07 20:27 197 查看
A - Painting Eggs
Time Limit:5000MS     Memory Limit:262144KB     64bit IO Format:%I64d & %I64u
Submit Status Practice CodeForces
282B

Description

The Bitlandians are quite weird people. They have very peculiar customs.

As is customary, Uncle J. wants to have n eggs painted for Bitruz (an ancient Bitland festival). He has asked G. and A. to do the work.

The kids are excited because just as is customary, they're going to be paid for the job!

Overall uncle J. has got n eggs. G. named his price for painting each egg. Similarly, A. named his price for painting each egg. It turns out that for each egg the sum of the money both A. and
G. want for the painting equals 1000.

Uncle J. wants to distribute the eggs between the children so as to give each egg to exactly one child. Also, Uncle J. wants the total money paid to A. to be different from the total money paid to G. by no more than 500.

Help Uncle J. Find the required distribution of eggs or otherwise say that distributing the eggs in the required manner is impossible.

Input

The first line contains integer n(1 ≤ n ≤ 106) — the number of eggs.

Next n lines contain two integers ai and gi each (0 ≤ ai, gi ≤ 1000; ai + gi = 1000): ai is
the price said by A. for the i-th egg andgi is the price said by G. for the i-th
egg.

Output

If it is impossible to assign the painting, print "-1" (without quotes).

Otherwise print a string, consisting of n letters "G" and "A". The i-th
letter of this string should represent the child who will get the i-th egg in the required distribution. Letter "A" represents A. and letter "G"
represents G. If we denote the money Uncle J. must pay A. for the painting as Sa, and the money Uncle J. must pay G. for the painting as Sg,
then this inequality must hold: |Sa  -  Sg|  ≤  500.

If there are several solutions, you are allowed to print any of them.

Sample Input

Input
2
1 999
999 1


Output
AG


Input
3
400 600
400 600
400 600


Output
AGA

#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cmath>
using namespace std;
int main()
{
int n,i,j;
long Sa,Sg;
int a[1000001],g[1000001];
while(~scanf("%d",&n))
{
Sa=Sg=0;
memset(a,0,sizeof(a));
memset(g,0,sizeof(g));
for(i=0;i<n;i++)
{
scanf("%d %d",&a[i],&g[i]);
}
for(i=0;i<n;i++)
{
if(abs(Sa+a[i]-Sg)<=abs(Sa-Sg-g[i]))//她两的差值谁小用谁
{
Sa=Sa+a[i];
g[i]=-1;//标记该输出A
}
else
{
Sg=Sg+g[i];
a[i]=-1;//标记该输出G
}
if(abs(Sa-Sg)>500)//最小的绝对差值都不满足绝对不满足
{
printf("-1\n");
break;
}
}
if(i==n)
{
for(j=0;j<n;j++)
{
if(a[j]!=-1)
printf("A");
else
printf("G");
}
printf("\n");
}
}
return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  秋季赛1.A