Two integer sequences existed initially — one of them was strictly increasing, and the other one — strictly decreasing.

Strictly increasing sequence is a sequence of integers [x1<x2<⋯<xk]. And strictly decreasing sequence is a sequence of integers [y1>y2>⋯>yl]. Note that the empty sequence and the sequence consisting of one element can be considered as increasing or decreasing.

They were merged into one sequence a. After that sequence a got shuffled. For example, some of the possible resulting sequences a for an increasing sequence [1,3,4] and a decreasing sequence [10,4,2] are sequences [1,2,3,4,4,10] or [4,2,1,10,4,3].

This shuffled sequence a is given in the input.

Your task is to find any two suitable initial sequences. One of them should be strictly increasing and the other one — strictly decreasing. Note that the empty sequence and the sequence consisting of one element can be considered as increasing or decreasing.

If there is a contradiction in the input and it is impossible to split the given sequence a to increasing and decreasing sequences, print “NO”.

Input
The first line of the input contains one integer n (1≤n≤2⋅105) — the number of elements in a.

The second line of the input contains n integers a1,a2,…,an (0≤ai≤2⋅105), where ai is the i-th element of a.

Output
If there is a contradiction in the input and it is impossible to split the given sequence a to increasing and decreasing sequences, print “NO” in the first line.

Otherwise print “YES” in the first line and any two suitable sequences. Note that the empty sequence and the sequence consisting of one element can be considered as increasing or decreasing.

In the second line print ni — the number of elements in the strictly increasing sequence. ni can be zero, in this case the increasing sequence is empty.

In the third line print ni integers inc1,inc2,…,incni in the increasing order of its values (inc1<inc2<⋯<incni) — the strictly increasing sequence itself. You can keep this line empty if ni=0 (or just print the empty line).

In the fourth line print nd — the number of elements in the strictly decreasing sequence. nd can be zero, in this case the decreasing sequence is empty.

In the fifth line print nd integers dec1,dec2,…,decnd in the decreasing order of its values (dec1>dec2>⋯>decnd) — the strictly decreasing sequence itself. You can keep this line empty if nd=0 (or just print the empty line).

ni+nd should be equal to n and the union of printed sequences should be a permutation of the given sequence (in case of “YES” answer).

Examples
inputCopy
7
7 2 7 3 3 1 4
outputCopy
YES
2
3 7
5
7 4 3 2 1
inputCopy
5
4 3 1 5 3
outputCopy
YES
1
3
4
5 4 3 1
inputCopy
5
1 1 2 1 2
outputCopy
NO
inputCopy
5
0 1 2 3 4
outputCopy
YES
0

5
4 3 2 1 0

C. Two Shuffled Sequences

题意 给你包含n个元素的数组 其中有一段严格上升的序列 有一段严格下降的序列 混在一起

让你输出

做法 我们把所有元素出现次数统计一下 对原数组排个序

一旦有一个元素出现次数大于等于3次那么就直接是false因为两边都塞不下

然后出现次数为一次放上升 出现次数为两次的放下降即可

#include <iostream>
#include <cstdio>
#include <algorithm>
#include <cmath>
#include <cstring>
#include <queue>
#include <stack>
#include <set>
#include <ctype.h>//isalpha,isdight,toupper
#include <map>
#include <sstream>
typedef long long ll;
using namespace std;
#define inf 0x3f3f3f3f
const int maxn=200000+5;vector<int>ans,ans_;
int a[maxn];
int b[maxn];
int main(){int n;scanf("%d",&n);for(int i=0;i<n;i++){scanf("%d",&a[i]);}sort(a,a+n);bool flag=true;for(int i=0;i<n;i++){b[a[i]]++;if(b[a[i]]>=2)ans.push_back(a[i]);else ans_.push_back(a[i]);if(b[a[i]]>=3){flag=false;break;}}if(!flag){printf("NO\n");return 0;}printf("YES\n");printf("%d\n",ans.size());int sz=ans.size();for(int i=0;i<sz;i++){i==sz-1?printf("%d",ans[i]):printf("%d ",ans[i]);}printf("\n");int sz_=ans_.size();printf("%d\n",sz_);for(int i=sz_-1;i>=0;i--){i==0?printf("%d",ans_[i]):printf("%d ",ans_[i]);}printf("\n");return 0;
}

C. Two Shuffled Sequences相关推荐

  1. Two Shuffled Sequences

    C. Two Shuffled Sequences time limit per test2 seconds memory limit per test256 megabytes inputstand ...

  2. DAY1 Two Shuffled Sequences

    C. Two Shuffled Sequences time limit per test2 seconds memory limit per test256 megabytes inputstand ...

  3. CodeForces - 1144C Two Shuffled Sequences【优先队列】

    Two Shuffled Sequences 题意: 将给定数组分成两组,其中一组严格递增,另一组严格递减. 题解: 要点在于数组中元素必须是严格递增或递减的,就是说一个元素不能在一个数组中重复出现. ...

  4. Codeforces Round #550 (Div. 3) C.Two Shuffled Sequences

    C. Two Shuffled Sequences Two integer sequences existed initially - one of them was strictly increas ...

  5. Codeforces1144C(C题)Two Shuffled Sequences

    C. Two Shuffled Sequences Two integer sequences existed initially - one of them was strictly increas ...

  6. Codeforces Round #550 (Div. 3)C. Two Shuffled Sequences

    Two integer sequences existed initially - one of them was strictly increasing, and the other one - s ...

  7. 1144C C. Two Shuffled Sequences(优先队列和set的应用)

    Two integer sequences existed initially - one of them was strictly increasing, and the other one - s ...

  8. CodeForces1144 C - Two Shuffled Sequences

    题目: 传送门 思路: 判断是否有一个数重复了三次以上,如果有则不能构成,然后将所给序列从小到大排序,取一个上升的序列,剩下的数从大往小就下降的序列,输出即可 vector<int> v1 ...

  9. CF1144C - Two Shuffled Sequences

    题意:把一个序列分成完全递增和完全递减的两个序列(即不可有相等的两个数),无元素或者只有一个元素也可认为是递增或递减,可行则按要求输出,不可行则输出NO. 题解:看有没有数字重复三次或以上的,若只出现 ...

最新文章

  1. GO Negotiation流程分析
  2. 《赢道:成功创业者的28条戒律》成都签售会魅力登场(背景)
  3. 配置所需要的依赖_Maven依赖管理之依赖传递
  4. 日期控件的点击事件,在js中添加callback属性,不在html中直接添加
  5. VTK:漫反射球用法实战
  6. SpringBoot服务整合(整合邮件服务、定时调度、Actuator监控)
  7. 2013款MacBook Air装Windows7单系统
  8. 2063:【例1.4】牛吃牧草【入门题】
  9. 学习Android之SharedPreferences使用
  10. C基础:数组打印直方图
  11. android9 coloros6版本,【OPPO Reno刷机包】A.12版 ColorOS6系统 安卓9 官方卡刷包
  12. 【2021杭电多校赛】2021“MINIEYE杯”中国大学生算法设计超级联赛(8)
  13. 自动化学报latex模板使用说明
  14. vue html 原始 模板,vue系列3--模板语法(示例代码)
  15. 内置函数 匿名函数 eval exec execute compile sorted map filter等常见函数 repr chr ord...
  16. 了解RPG游戏中剧情播放器的制作原理及流程
  17. pve 不订阅更新_更新公告 | 2.1.0全新版本“龙争虎斗”明日登场!
  18. 风速的java_使用arduino计算皮托管风速
  19. 10年嵌入式工程师总结的Bug调试经验
  20. 2017.10.16离线赛总结

热门文章

  1. 手机实名检测 API数据接口
  2. 电脑如何打开虚拟化设置?
  3. 计算机顶会:投稿时间 会议介绍
  4. 869计算机难不难,北京科技大学
  5. Ubuntu中LightDM是什么(转)
  6. 动态规划从入门到放弃【1】
  7. AnnotationProcessor 处理器不工作怎么定位?
  8. 技术人的职场晋级指南:当心“1万小时定律”毁了你!
  9. BurningStudioPortable刻录CD步骤
  10. 最新还不错的宝宝起名神器小程序源码+UI非常美观