• Low Elements--AT


    题目描述

    Given is a permutation P1,…,PN of 1,…,N. Find the number of integers i (1≤i≤N) that satisfy the following condition:
    ·For any integer j (1≤j≤i), Pi≤Pj.
    Constraints
    ·1≤N≤2×105
    ·P1,…,PN is a permutation of 1,…,N.
    ·All values in input are integers.

    输入

    Input is given from Standard Input in the following format:
    N
    P1 … PN

    输出

    Print the number of integers i that satisfy the condition.

    样例输入 Copy

    【样例15
    4 2 5 1 3
    【样例24
    4 3 2 1
    【样例36
    1 2 3 4 5 6
    【样例48
    5 7 4 2 6 8 1 3
    【样例51
    1
    

    样例输出 Copy

    【样例13
    【样例24
    【样例31
    【样例44
    【样例51
    

    提示

    样例1解释
    i=1, 2, and 4 satisfy the condition, but i=3 does not - for example, Pi>Pj holds for j=1.
    Similarly, i=5 does not satisfy the condition, either. Thus, there are three integers that satisfy the condition.
    样例2解释
    All integers i (1≤i≤N) satisfy the condition.
    样例3解释
    Only i=1 satisfies the condition.

    #pragma GCC optimize("Ofast,unroll-loops,no-stack-protector,fast-math")
    #pragma GCC optimize("Ofast")
    #pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native")
    #pragma comment(linker, "/stack:200000000")
    #pragma GCC optimize (2)
    #pragma G++ optimize (2)
    #include <bits/stdc++.h>
    #include <algorithm>
    #include <map>
    #include <queue>
    #include <set>
    #include <stack>
    #include <string>
    #include <vector>
    using namespace std;
    #define wuyt main
    typedef long long ll;
    #define HEAP(...) priority_queue<__VA_ARGS__ >
    #define heap(...) priority_queue<__VA_ARGS__,vector<__VA_ARGS__ >,greater<__VA_ARGS__ > >
    template<class T> inline T min(T &x,const T &y){return x>y?y:x;}
    template<class T> inline T max(T &x,const T &y){return x<y?y:x;}
    //#define getchar()(p1 == p2 && (p2 = (p1 = buf) + fread(buf, 1, 1 << 21, stdin), p1 == p2) ? EOF : *p1++)
    //char buf[(1 << 21) + 1], *p1 = buf, *p2 = buf;
    ll read(){ll c = getchar(),Nig = 1,x = 0;while(!isdigit(c) && c!='-')c = getchar();
    if(c == '-')Nig = -1,c = getchar();
    while(isdigit(c))x = ((x<<1) + (x<<3)) + (c^'0'),c = getchar();
    return Nig*x;}
    #define read read()
    const ll inf = 1e15;
    const int maxn = 2e5 + 7;
    const int mod = 1e9 + 7;
    #define start int wuyt()
    #define end return 0
    int cnt;
    start{
        int n=read;
        int minn=mod;
        for(int i=1;i<=n;i++){
            int num=read;
            minn=min(num,minn);
            if(minn==num)
                cnt++;
        }
        cout<<cnt<<endl;
        end;
    }
     
    /**************************************************************
        Language: C++
        Result: 正确
        Time:24 ms
        Memory:2024 kb
    ****************************************************************/
    
  • 相关阅读:
    java垃圾回收机制
    mysql的find_in_set函数操作
    mysql中常见的sql语句语法书写操作
    如何破坏双亲委派原则
    mysql中临时表的创建
    spring当中的事务处理
    restTemplate调用操作出现乱码
    mysql中的any_value的基本使用操作
    DTD与XSD的区别
    idea的插件
  • 原文地址:https://www.cnblogs.com/PushyTao/p/13144178.html
Copyright © 2020-2023  润新知