codeforces 599c(30/600)

本文介绍了一个有趣的编程问题:如何帮助海绵宝宝和他的朋友们重新排列他们在海滩上建造的沙堡,使得这些沙堡的高度按顺序递增。文章提出了一种高效的算法解决方案,并通过树状数组来实现。

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 to hi. 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.

Example
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]

这个题我是想的…
先离散后往里插
树状数组算填充…
填充等于遍历答案++

很蠢的nlgn

然而正确答案是算出从左到右最大的….
从右到左最小的…

如果从左到右最大的小于等于从右到左最小的….
那说明是顺序的…

也就是说答案++

真鸡儿6

#include <cstdio>
#include <cstring>
#include <algorithm>
#include<cmath>
#include<iostream>
#include<map>
using namespace std;
int tu[100001],tt[100001];
int n;
int lowb(int x) { return x&-x; }
int ci[100001];
int gs(int x)
{
    int q = 0;
    for (int y = x; y > 0; y -= lowb(y))q += ci[y];
    return q;
}
void gengxin(int xiabiao, int zhi)
{
    for (int q = xiabiao; q <= n; q += lowb(q))
    {
        ci[q] += zhi;
        if (ci[q] < 0)ci[q] == 0;
    }
}
int main()
{
    cin >> n;
    map<int, int>y,z;
    for (int a = 1; a <= n; a++)
    {
        scanf("%d", &tu[a]);
        tt[a] = tu[a];
    }
    sort(tt + 1, tt + n + 1);
    for (int a = 1; a <= n; a++)
    {
        if (z[tt[a]])continue;
        z[tt[a]] = a;
    }
    for (int a = 1; a <= n; a++)
    {
        z[tu[a]]++;
        tu[a] = z[tu[a]] - 1;
    }
    int ks = 0;
    for (int a = 1; a <= n; a++)
    {
        gengxin(tu[a], 1);
        if (gs(a) == a)ks++;
    }
    cout << ks;
}
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值