• CF div2 332 C


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

     
    排序搞一搞
     1 #include <cstdio>
     2 #include <cstring>
     3 #include <iostream>
     4 #include <stack>
     5 #include <queue>
     6 #include <map>
     7 #include <algorithm>
     8 #include <vector>
     9 
    10 using namespace std;
    11 
    12 const int maxn = 1000005;
    13 
    14 typedef long long LL;
    15 
    16 vector<int>G[maxn];
    17 
    18 pair<int,int>a[maxn],b[maxn];
    19 
    20 
    21 int main()
    22 {
    23     int n;
    24     cin>>n;
    25     for(int i=0;i<n;i++){
    26         int x;
    27         cin>>x;
    28         a[i]=make_pair(x,i);
    29     }
    30     sort(a,a+n);
    31     for(int i=0;i<n;i++){
    32         b[i] = make_pair(min(i,a[i].second),max(i,a[i].second));
    33     }
    34     sort(b,b+n);
    35     int tmp = b[0].second;
    36     int ans = 1;
    37     for(int i=0;i<n;i++){
    38         if(tmp < b[i].first)
    39             ans ++;
    40         tmp = max(tmp,b[i].second);
    41     }
    42     printf("%d
    ",ans);
    43 
    44 
    45     return 0;
    46 }
    View Code
    #include<cstdio>#include<cstring>#include<iostream>#include<stack>#include<queue>#include<map>#include<algorithm>#include<vector>usingnamespace std;constint maxn =1000005;typedeflonglong LL;
    
    vector<int>G[maxn];
    
    pair<int,int>a[maxn],b[maxn];int main(){int n;
        cin>>n;for(int i=0;i<n;i++){int x;
            cin>>x;
            a[i]=make_pair(x,i);}
        sort(a,a+n);for(int i=0;i<n;i++){
            b[i]= make_pair(min(i,a[i].second),max(i,a[i].second));}
        sort(b,b+n);int tmp = b[0].second;int ans =1;for(int i=0;i<n;i++){if(tmp < b[i].first)
                ans ++;
            tmp = max(tmp,b[i].second);}
        printf("%d
    ",ans);return0;}
  • 相关阅读:
    Java核心技术卷阅读随笔--第5章【继承】
    Java核心技术卷阅读随笔--第4章【对象与类】
    Python创建虚拟环境
    软件工程实践2017第二次作业
    tf常见的损失函数(LOSS)总结
    python-Parser使用
    论文杂记
    最近看了Light-GCN的项目,记录了一些里面用到的api
    screen笔记
    Graph Convolutional Networks for Text Classification——论文笔记
  • 原文地址:https://www.cnblogs.com/lmlyzxiao/p/4985131.html
Copyright © 2020-2023  润新知