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
****************************************************************/
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值