CF340D.Bubble Sort Graph

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Iahub recently has learned Bubble Sort, an algorithm that is used to sort a permutation with nn elements a1a_{1} , a2a_{2} , ..., ana_{n} in ascending order. He is bored of this so simple algorithm, so he invents his own graph. The graph (let's call it GG ) initially has nn vertices and 0 edges. During Bubble Sort execution, edges appear as described in the following algorithm (pseudocode).

<br></br>procedure bubbleSortGraph()<br></br> build a graph G with n vertices and 0 edges<br></br> repeat<br></br> swapped = false<br></br> for i = 1 to n - 1 inclusive do:<br></br> if a[i] > a[i + 1] then<br></br> add an undirected edge in G between a[i] and a[i + 1]<br></br> swap( a[i], a[i + 1] )<br></br> swapped = true<br></br> end if<br></br> end for<br></br> until not swapped <br></br> /* repeat the algorithm as long as swapped value is true. */ <br></br>end procedure<br></br>For a graph, an independent set is a set of vertices in a graph, no two of which are adjacent (so there are no edges between vertices of an independent set). A maximum independent set is an independent set which has maximum cardinality. Given the permutation, find the size of the maximum independent set of graph GG , if we use such permutation as the premutation aa in procedure bubbleSortGraph.

输入格式

The first line of the input contains an integer nn ( 2<=n<=1052<=n<=10^{5} ). The next line contains nn distinct integers a1a_{1} , a2a_{2} , ..., ana_{n} (1<=ai<=n)(1<=a_{i}<=n) .

输出格式

Output a single integer — the answer to the problem.

输入输出样例

  • 输入#1

    3
    3 1 2
    

    输出#1

    2
    

说明/提示

Consider the first example. Bubble sort swaps elements 3 and 1. We add edge (1, 3). Permutation is now [1, 3, 2]. Then bubble sort swaps elements 3 and 2. We add edge (2, 3). Permutation is now sorted. We have a graph with 3 vertices and 2 edges (1, 3) and (2, 3). Its maximal independent set is [1, 2].

首页