zoukankan      html  css  js  c++  java
  • codeforcs 599C Day at the Beach

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

    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]

     1  #include<cstdio>
     2 #include<algorithm>
     3 using namespace std;
     4 typedef long long ll;
     5 int main()
     6 {
     7     int a[100005],b[100005];
     8     int n;
     9     scanf("%d",&n);
    10     for(int i=0;i<n;i++)
    11     {
    12         scanf("%d",&a[i]);
    13         b[i]=a[i];
    14     }
    15     sort(a,a+n);
    16     ll sum1=0,sum2=0;
    17     int ans=0;
    18     for(int i=0;i<n;i++)
    19     {
    20         sum1+=a[i],sum2+=b[i];
    21         if(sum1==sum2)ans++;
    22     }
    23     printf("%d
    ",ans);
    24     return 0;
    25 }
  • 相关阅读:
    强人教你吃自助火锅(转载)
    求职贴士:面试之十大不可说
    通过LoadRunner监控Linux的资源状况
    最美好的中秋祝福献给您
    一台电脑中招,整网均被感染9166.biz / 5y5.us Arp木马病毒专杀360独家发布
    白领把握交际的最佳时间〔转载〕
    40道题预测你能活多久
    老色狼给小色狼的32句忠告[转载]
    WINRAR 命令行语法[转载]
    <<软件性能测试与LoadRunner实战>>可以在网上和书店买到了
  • 原文地址:https://www.cnblogs.com/homura/p/4988073.html
Copyright © 2011-2022 走看看