CF486E.LIS of Sequence

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

The next "Data Structures and Algorithms" lesson will be about Longest Increasing Subsequence (LIS for short) of a sequence. For better understanding, Nam decided to learn it a few days before the lesson.

Nam created a sequence aa consisting of nn ( 1<=n<=1051<=n<=10^{5} ) elements a1,a2,...,ana_{1},a_{2},...,a_{n} ( 1<=ai<=1051<=a_{i}<=10^{5} ). A subsequence ai1,ai2,...,aika_{i1},a_{i2},...,a_{ik} where 1<=i1<i2<...<ik<=n1<=i_{1}<i_{2}<...<i_{k}<=n is called increasing if ai1<ai2<ai3<...<aika_{i1}<a_{i2}<a_{i3}<...<a_{ik} . An increasing subsequence is called longest if it has maximum length among all increasing subsequences.

Nam realizes that a sequence may have several longest increasing subsequences. Hence, he divides all indexes ii ( 1<=i<=n1<=i<=n ), into three groups:

  1. group of all ii such that aia_{i} belongs to no longest increasing subsequences.
  2. group of all ii such that aia_{i} belongs to at least one but not every longest increasing subsequence.
  3. group of all ii such that aia_{i} belongs to every longest increasing subsequence.

Since the number of longest increasing subsequences of aa may be very large, categorizing process is very difficult. Your task is to help him finish this job.

输入格式

The next "Data Structures and Algorithms" lesson will be about Longest Increasing Subsequence (LIS for short) of a sequence. For better understanding, Nam decided to learn it a few days before the lesson.

Nam created a sequence aa consisting of nn ( 1<=n<=1051<=n<=10^{5} ) elements a1,a2,...,ana_{1},a_{2},...,a_{n} ( 1<=ai<=1051<=a_{i}<=10^{5} ). A subsequence ai1,ai2,...,aika_{i1},a_{i2},...,a_{ik} where 1<=i1<i2<...<ik<=n1<=i_{1}<i_{2}<...<i_{k}<=n is called increasing if ai1<ai2<ai3<...<aika_{i1}<a_{i2}<a_{i3}<...<a_{ik} . An increasing subsequence is called longest if it has maximum length among all increasing subsequences.

Nam realizes that a sequence may have several longest increasing subsequences. Hence, he divides all indexes ii ( 1<=i<=n1<=i<=n ), into three groups:

  1. group of all ii such that aia_{i} belongs to no longest increasing subsequences.
  2. group of all ii such that aia_{i} belongs to at least one but not every longest increasing subsequence.
  3. group of all ii such that aia_{i} belongs to every longest increasing subsequence.

Since the number of longest increasing subsequences of aa may be very large, categorizing process is very difficult. Your task is to help him finish this job.

输出格式

Print a string consisting of nn characters. ii -th character should be '1', '2' or '3' depending on which group among listed above index ii belongs to.

输入输出样例

  • 输入#1

    1
    4
    

    输出#1

    3
    
  • 输入#2

    4
    1 3 2 5
    

    输出#2

    3223
    
  • 输入#3

    4
    1 5 2 3
    

    输出#3

    3133
    

说明/提示

The next "Data Structures and Algorithms" lesson will be about Longest Increasing Subsequence (LIS for short) of a sequence. For better understanding, Nam decided to learn it a few days before the lesson.

Nam created a sequence aa consisting of nn ( 1<=n<=1051<=n<=10^{5} ) elements a1,a2,...,ana_{1},a_{2},...,a_{n} ( 1<=ai<=1051<=a_{i}<=10^{5} ). A subsequence ai1,ai2,...,aika_{i1},a_{i2},...,a_{ik} where 1<=i1<i2<...<ik<=n1<=i_{1}<i_{2}<...<i_{k}<=n is called increasing if ai1<ai2<ai3<...<aika_{i1}<a_{i2}<a_{i3}<...<a_{ik} . An increasing subsequence is called longest if it has maximum length among all increasing subsequences.

Nam realizes that a sequence may have several longest increasing subsequences. Hence, he divides all indexes ii ( 1<=i<=n1<=i<=n ), into three groups:

  1. group of all ii such that aia_{i} belongs to no longest increasing subsequences.
  2. group of all ii such that aia_{i} belongs to at least one but not every longest increasing subsequence.
  3. group of all ii such that aia_{i} belongs to every longest increasing subsequence.

Since the number of longest increasing subsequences of aa may be very large, categorizing process is very difficult. Your task is to help him finish this job.

首页