C. Day at the Beach
 

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个数,让你分块,快内数字进行排序,使得最后整体为升序,且块数尽量最大

题解:我们先离散化数据,再分别插入树状数组中,每次查询当前位置能否分块,能?自然就ans++;

///
#include<bits/stdc++.h>
using namespace std; typedef long long ll;
#define mem(a) memset(a,0,sizeof(a))
#define pb push_back inline ll read()
{
ll x=,f=;char ch=getchar();
while(ch<''||ch>''){
if(ch=='-')f=-;ch=getchar();
}
while(ch>=''&&ch<=''){
x=x*+ch-'';ch=getchar();
}return x*f;
}
//****************************************
const int N=+;
#define maxn 100000+5
int C[maxn],n;
int getsum(int x) {
int sum=;
while(x>) {
sum+=C[x];
x-=(x&-x);
}
return sum;
} void update(int x,int c) {
while(x<=n) {
C[x]+=c;
x+=(x&-x);
}
}
int a[N],b[N];
map<int ,int >Hash;
int main() { n=read();
for(int i=;i<=n;i++) {
scanf("%d",&a[i]);
b[i]=a[i];
}sort(b+,b+n+);
for(int i = ; i <= n; i++) {
if(Hash.count(a[i])) {
Hash[a[i]]++;
a[i] = Hash[a[i]];
}
else {
int tmp = a[i];
a[i] = lower_bound(b+, b+n+, a[i]) - b;
Hash[tmp] = a[i];
}
}int ans=;
for(int i=;i<=n;i++) {
update(a[i],);
int g=getsum(i) ;
if(g==i) {
ans++;
}
}
cout<<ans<<endl;
return ;
}

代码

最新文章

  1. 实现php连接memcached
  2. jquery 页面滚动到底部自动加载插件集合
  3. 60阶单群同构于A5的证明
  4. Markdown写博客
  5. Java中Office(word/ppt/excel)转换成HTML实现
  6. QQ Auto Login Visual Basic Script
  7. JAVA 图形界面 JFrame容器
  8. 双十一运维怎么过,OneAPM 帮你救火,轻松运维
  9. 使用ShareSDK完成Facebook第三方登录和Facebook分享时没办法跳转到Facebook应用
  10. socket网络编程快速上手(二)——细节问题(4)
  11. centos 安装 ntpdate 并同步时间
  12. 转:详解JMeter正则表达式(1)
  13. 两个数组各个数相加或相乘变成一个矩阵求第K大
  14. Nginx服务器配置之location语法分析
  15. LindDotNetCore~授权中间件的介绍
  16. Android 常见问题解决
  17. 编程菜鸟的日记-初学尝试编程-C++ Primer Plus 第5章编程练习9
  18. 2017-2018-2 20172310『Java程序设计』课程 结对编程练习_四则运算_第二周
  19. Django项目部署在Linux下以进程方式启动
  20. tilestache + mbutil应用

热门文章

  1. Struts之 拦截器配置 ( Interceptor )
  2. [转帖]c++ 面试整理
  3. quartz 数据库表含义解释
  4. django 加日志
  5. CAD在网页中增加一个射线
  6. Xftp 5 和 Xshell 5 基本使用方法
  7. chrome浏览器 快捷键设置
  8. Linux快速入门教程-进程管理ipcs命令学习
  9. Excel 导入 分批导入
  10. iptables简单了解