Day at the Beach
time limit per test

2 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

One day Squidward, Spongebob and Patrick decided to go to the beach. Unfortunately, the weather was bad, so the friends were unable to ride waves. However, they decided to spent their time building sand castles.

At the end of the day there were n castles built by friends. Castles are numbered from 1 to n, and the height of the i-th castle is equal tohi. When friends were about to leave, Squidward noticed, that castles are not ordered by their height, and this looks ugly. Now friends are going to reorder the castles in a way to obtain that condition hi ≤ hi + 1 holds for all i from 1 to n - 1.

Squidward suggested the following process of sorting castles:

  • Castles are split into blocks — groups of consecutive castles. Therefore the block from i to j will include castles i, i + 1, ..., j. A block may consist of a single castle.
  • The partitioning is chosen in such a way that every castle is a part of exactly one block.
  • Each block is sorted independently from other blocks, that is the sequence hi, hi + 1, ..., hj becomes sorted.
  • The partitioning should satisfy the condition that after each block is sorted, the sequence hi becomes sorted too. This may always be achieved by saying that the whole sequence is a single block.

Even Patrick understands that increasing the number of blocks in partitioning will ease the sorting process. Now friends ask you to count the maximum possible number of blocks in a partitioning that satisfies all the above requirements.

Input

The first line of the input contains a single integer n (1 ≤ n ≤ 100 000) — the number of castles Spongebob, Patrick and Squidward made from sand during the day.

The next line contains n integers hi (1 ≤ hi ≤ 109). The i-th of these integers corresponds to the height of the i-th castle.

Output

Print the maximum possible number of blocks in a valid partitioning.

Sample test(s)
input
3
1 2 3
output
3
input
4
2 1 3 2
output
2
Note

In the first sample the partitioning looks like that: [1][2][3].

In the second sample the partitioning is: [2, 1][3, 2]

题意:将这n个数分成几个区间,在每个区间内进行升序排序,最后要总体是升序的。

思路:后面的区间的最小的数一定会比前面区间最大的数还要大或者相等。Max[i]表示从1一个数到第i的数中最大的那个数,那Max数组一定是升序的。从最后一个数开始往前,Min表示当前的最小值,如果最小值大于或等于当前位置的最大值,那么区间数量就加1。

#include<bits/stdc++.h>
using namespace std;
int h[],Max[];
int main()
{
int i,n;
scanf("%d",&n);
Max[]=;
for(i=; i<=n; i++)
{
scanf("%d",&h[i]);
if(h[i]>Max[i-]) Max[i]=h[i];
else Max[i]=Max[i-];
}
int ans=,Min=;
for(i=n;i>;i--)
{
if(Min>=Max[i]) ans++;
if(Min>h[i]) Min=h[i]; }
cout<<ans<<endl;
}

最新文章

  1. 解决java.lang.IncompatibleClassChangeError: Implementing class
  2. VS2012使用Git并连接到osc@git
  3. 参考:(Java Selenium)Element is not visible to clcik
  4. Android开发之各个语言
  5. lintcode-【简单题】快乐数
  6. zw版【转发&#183;台湾nvp系列例程】halcon与delphi系列例程
  7. [SAP ABAP开发技术总结]屏幕跳转
  8. Spring 异常 —— cvc-elt.1: Cannot find the declaration of element &#39;beans&#39;
  9. AS3清空数组的四种方法
  10. Jmeter3.1 使用技巧
  11. c# 向数据库插数据超过1000条
  12. DOM 基础
  13. 【C++】vector用法详解
  14. python面试题库——3数据库和缓存
  15. MongoDB 安全配置
  16. 寻找自己的道路——与技术同胞共勉 一种划分为七个阶段的道路:自信=&gt;意志=&gt;布局=&gt;切入点=&gt;团队=&gt;渠道=&gt;产品
  17. MFC 常见问题
  18. Elasticsearch利用scroll查询获取所有数据
  19. 【MVC】知识笔记
  20. [Oracle] decode 函数及其用法

热门文章

  1. 搭建Discuz论坛
  2. 同步锁源码分析(一)AbstractQueuedSynchronizer原理
  3. 数据结构之线索二叉树——C语言实现
  4. linux教程
  5. RESTful介绍和使用教程
  6. 基于OpenGL编写一个简易的2D渲染框架-11 重构渲染器-Renderer
  7. XmlHttpRequest对象 ajax核心之一
  8. NTP时间服务器搭建
  9. 刚刚安装完nginx,服务启动,通过浏览器无法访问的问题
  10. win10为什么不能把文件直接拖拽