Codeforces Round #269 (Div. 2) B. MUH and Important Things

来源:互联网 发布:dns劫持后的域名来路 编辑:程序博客网 时间:2024/04/20 03:44

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
41 3 3 1
output
YES1 4 2 3 4 1 2 3 4 1 3 2 
input
52 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.


题意:n个问题,每个问题都有对应的难度,求至少三个不同的序列使得做题的难度是非递减的

思路:排序后,判断是否有重复的地方,然后就是依次交换啦

#include <iostream>#include <cstdio>#include <cstring>#include <algorithm>#include <vector>typedef long long ll;using namespace std;const int maxn = 2222;pair<int, int> pp[maxn];vector<int> ans[3];int main() {int n, x;scanf("%d", &n);for (int i = 0; i < n; i++) {scanf("%d", &x);pp[i] = make_pair(x, i);}sort(pp, pp+n);for (int i = 0; i < n; i++)ans[0].push_back(pp[i].second);vector<int> ve;for (int i = 0; i < n-1; i++)if (pp[i].first == pp[i+1].first)ve.push_back(i);if (ve.size() < 2) printf("NO\n");else {printf("YES\n");swap(pp[ve[0]], pp[ve[0]+1]);for (int i = 0; i < n; i++)ans[1].push_back(pp[i].second);swap(pp[ve[1]], pp[ve[1]+1]);for (int i = 0; i < n; i++)ans[2].push_back(pp[i].second);for (int i = 0; i < 3; i++) for (int j = 0; j < n; j++)printf("%d%c", ans[i][j]+1, (j==n-1)?'\n':' ');}return 0;}




1 0