现在的位置: 首页 > 综合 > 正文

cf471B MUH and Important Things

2018年01月13日 ⁄ 综合 ⁄ 共 3001字 ⁄ 字号 评论关闭
B. MUH and Important Things
time limit per test

1 second

memory limit per test

256 megabytes

input

standard input

output

standard output

It's time polar bears Menshykov and Uslada from the zoo of St. Petersburg and elephant Horace from the zoo of Kiev got down to business. In total, there are n tasks
for the day and each animal should do each of these tasks. For each task, they have evaluated its difficulty. Also animals decided to do the tasks in order of their difficulty. Unfortunately, some tasks can have the same difficulty, so the order in which one
can perform the tasks may vary.

Menshykov, Uslada and Horace ask you to deal with this nuisance and come up with individual plans for each of them. The plan is a sequence describing the order in which an animal should do all the n tasks.
Besides, each of them wants to have its own unique plan. Therefore three plans must form three different sequences. You are to find the required plans, or otherwise deliver the sad news to them by stating that it is impossible to come up with three distinct
plans for the given tasks.

Input

The first line contains integer n (1 ≤ n ≤ 2000)
— the number of tasks. The second line contains n integers h1, h2, ..., hn (1 ≤ hi ≤ 2000),
where hi is
the difficulty of the i-th task. The larger number hi is,
the more difficult the i-th task is.

Output

In the first line print "YES" (without the quotes), if it is possible to come up with three distinct plans of doing the tasks. Otherwise print in
the first line "NO" (without the quotes). If three desired plans do exist, print in the second line n distinct
integers that represent the numbers of the tasks in the order they are done according to the first plan. In the third and fourth line print two remaining plans in the same form.

If there are multiple possible answers, you can print any of them.

Sample test(s)
input
4
1 3 3 1
output
YES
1 4 2 3 
4 1 2 3 
4 1 3 2 
input
5
2 4 1 4 8
output
NO
Note

In the first sample the difficulty of the tasks sets one limit: tasks 1 and 4 must be done before tasks 2 and 3. That gives the total of four possible sequences of doing tasks : [1, 4, 2, 3], [4, 1, 2, 3], [1, 4, 3, 2], [4, 1, 3, 2]. You can print any three
of them in the answer.

In the second sample there are only two sequences of tasks that meet the conditions — [3, 1, 2, 4, 5] and [3, 1, 4, 2, 5]. Consequently, it is impossible to make three distinct sequences of tasks.

题意是给出一个数列,要求三个排列,使得数列严格递增

就是sb的模拟啊……因为逗了一下结果final test还wa了

#include<cstdio>
#include<iostream>
#include<cstring>
#include<cstdlib>
#include<cmath>
#include<algorithm>
#include<ctime>
#include<set>
#define LL long long
using namespace std;
struct dat{
	LL x,rnk;
}a[10000];
bool cmp(dat a,dat b)
{
	return a.x<b.x;
}
LL n,sum=1,save;
bool ok;
inline LL read()
{
    int x=0,f=1;char ch=getchar();
    while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();}
    while(ch>='0'&&ch<='9'){x=x*10+ch-'0';ch=getchar();}
    return x*f;
}
int main()
{
	n=read();
	for(int i=1;i<=n;i++)a[i].x=read(),a[i].rnk=i;
	sort(a+1,a+n+1,cmp);
	int s=1;
	for (int i=2;i<=n;i++)
	  {
	  	if (a[i].x==a[i-1].x)s++;
	  	else sum*=s,s=1;
	  	if (sum>=3){ok=1;break;}
	  }
	sum*=s;
	if (sum>=3)ok=1;
	if (!ok)
	{
		printf("NO\n");
		return 0;
	}
	printf("YES\n");
	for (int i=1;i<=n;i++)printf("%d ",a[i].rnk);
	printf("\n");
	for (int i=2;i<=n;i++)
	  if (a[i].x==a[i-1].x){swap(a[i],a[i-1]);save=i;break;}
	for (int i=1;i<=n;i++)printf("%d ",a[i].rnk);
	printf("\n");
	for (int i=1;i<=n;i++)
	  if(a[i].x==a[i-1].x&&i!=save){swap(a[i],a[i-1]);break;}
	for (int i=1;i<=n;i++)printf("%d ",a[i].rnk);
	printf("\n");
}

抱歉!评论已关闭.