timus 1346. Intervals of Monotonicity URAL 解题报告 DP 小水题,阅读理解

timus  1346. Intervals of Monotonicity URAL 解题报告

坑死人的小破题,给一个数列,然后判断这个数列的 complexity 是多少,所谓的complexity 就是最少数目的partition ,一个partition是这样定义的:It’s well known that a domain of any continuous function may be divided into intervals where the function would increase monotonically or decrease monotonically!   狗日的题意,就是说看最少有几个片段是单调的,如果不增不减的就不算……

例如:
1 5
1 1 1 1 1
答案是1,而不是5,不是0!
明白了这点之后O(n)的做法就出来了
对于每一个起点,往后找他的转折点! 中间相等的不要管他!
或者来由的做法,标记法,交替寻找上升或者下降!

#include<iostream>
#include<cstdio>
#include<cstring>
#define pd(x) printf("%d",(x))
#define ed printf("\n")
#define op(x) cout<<#x<<"="<<(x)<<" "
using namespace std;

const int N=100100;

int a[N];
int A,B;
int ans,tmp1,tmp2;
int n;
int bo;
int main()
{
    cin>>A>>B;
    n=B-A+1;bo=0; ans=0;

    for(int i=1;i<=n;++i)
    {
        cin>>a[i];
    }if(n<=1){cout<<1<<endl;return 0;}

    for(int i=1;i<=n;++i)
    {///枚举当前节点,看从这点出发到哪里才是结束,
        if(i==n)ans++;
        //else if(a[i]==a[i+1])ans++;
        else if(a[i]<a[i+1])
        {
            while(1)
            {
                i++; if(i+1>n){ ans++;break;}
                if(a[i]>a[i+1]){ans++;  break;}
              //  if(a[i]==a[i+1]){ans++;  break;}
            }
        }
        else if(a[i]>a[i+1])
        {
            while(1)
            {
                i++; if(i+1>n){ ans++;break;}
                if(a[i]<a[i+1]){ans++;  break;}
               // if(a[i]==a[i+1]){ans++;  break;}
            }
        }

    }

    cout<<ans<<endl;

  return 0;
}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值