Pair: normal and paranormal URAL - 2019

If you find yourself in Nevada at an abandoned nuclear range during Halloween time, you’ll become a witness of an unusual show. Here Ghostbusters hold annual tests for new versions of their proton packs. There are n Ghostbusters and n portable traps with ghosts, all are located on a semicircle. Each trap contains exactly one ghost. The ghosts may be of different types, but each Ghostbuster can neutralize with his weapon only one type of the evil spirits.

On the count of three all ghost traps open at once and all Ghostbusters start to fire. Of course, each Ghostbuster shoots at the ghost, which his proton gun is able to neutralize. The most important thing here is not to cross proton beams of the guns.

Problem illustration

You know positions of all Ghostbusters and all the traps in this year’s tests. For each Ghostbuster determine which ghost he should shoot at, so that all the ghosts are neutralized and no two gun beams cross. You can assume that all proton beams are in the same horizontal plane and they don’t shoot ghosts through in case of a hit.

Input

In the first line there is an integer n that is the number of Ghostbusters (1 ≤ n≤ 5 000). In the second line the sequence of 2 n Latin letters is written, describing the allocation of the Ghostbusters and the traps on the semicircle. Uppercase letters correspond to the Ghostbusters and lowercase letters correspond to the traps. For example, “a” stands for a trap with the ghost of type “a”, while “A” stands for the Ghostbuster with the gun neutralizing ghosts of type “a”. The sequence has exactly n lowercase letters and exactly n uppercase letters.

Output

If the problem has a solution, output n space-separated integers g 1, g 2, …, g n, where g i is the number of the ghost i-th Ghostbuster should shoot at. Both Ghostbusters and ghosts are numbered with integers from 1 to n in the order of their positions along the semicircle. All g i must be pairwise different. If the problem has several solutions, output any of them. If the problem has no solution, output “Impossible”.

Example

inputoutput
2
AbBa
2 1
2
AbaB
Impossible
1
Ab
Impossible

题意

一个半圆 连续分布着大小写字母 对应大小写相连 若无交叉 依次输出大写相连的小写是第几个小写字母

#include <iostream>
#include <algorithm>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <queue>
#include <cmath>
using namespace std;
char a[15500];
int x[15500];
int xx[15500];
int main()
{
    int n,i,j,y,num = 0,f,xy;
    char c;
    scanf("%d\n",&n);
    scanf("%s",a);
    n *= 2;
    f = 1;
    xy = 0;
    for(i=0;i<n;i++)
    {
        if(a[i]>='a'&&a[i]<='z')
        {
            xy++;
            xx[i] = xy;
        }
    }
    memset(x,0,sizeof(x));
    while(f)
    {

        f = 0;
        c = '0';
        for(i=0;i<n;i++)
        {
            if(c=='0'&&((a[i]>='a'&&a[i]<='z')||(a[i]>='A'&&a[i]<='Z')))
            {
                c = a[i];
              //  cout<<c<<endl;
                y = i;
            }
            else if((a[i]>='a'&&a[i]<='z')||(a[i]>='A'&&a[i]<='Z'))
            {
                //cout<<c<<" "<<a[i]<<endl;
                if(abs(a[i]-c) == 32)
                {
                  //  cout<<"sd"<<endl;
                    if(a[y]>='A'&&a[y]<='Z')
                    {
                        x[y] = xx[i];
                    }
                    else {
                        x[i] = xx[y];
                    }
                    a[y] = '0',a[i] = '0';
                    f = 1;
                    c = '0';
                    num++;
                }
                else
                {
                    c = a[i];
                    y = i;
                }
            }

        }
        c = '0';
    }
    if(num!=n/2) printf("Impossible\n");
    else
    {
        f = 0;
        for(i=0;i<n;i++)
        {
            if(x[i] != 0)
            {
                if(!f) f= 1;
                else printf(" ");

                printf("%d",x[i]);
            }
        }
        printf("\n");
    }
    return 0;
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值