2017 9 15 noip模拟赛

Posted 1 2 f s_____

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2017 9 15 noip模拟赛相关的知识,希望对你有一定的参考价值。

t1:

技术分享
#include<cstdio>
#include<cstring>
const int N=1000010;
int a[N],b[N];
int sum=1,maxx=0;
int main()
{
    freopen("sequence.in","r",stdin);
    freopen("sequence.out","w",stdout);
    int n;
    scanf("%d",&n);
    for(int i=1;i<=n;i++) scanf("%d %d",&a[i],&b[i]);
    int now=1,last=1,t=a[1];
    while(now<n)
    {
        now++,sum++;
        if(b[now]<t)
        {
            last++;now=last;t=a[now];sum=1;
        }
        else if(t<a[now]) 
        {
            t=a[now];last=now;
        }
        if(maxx<sum) maxx=sum;
    }
    printf("%d",maxx);
    return 0;
}
View Code

贪心,注意初值;

以上是关于2017 9 15 noip模拟赛的主要内容,如果未能解决你的问题,请参考以下文章

NOIP模拟赛(2017.9.15) -游戏(game)

2017-9-9 NOIP模拟赛

2017-9-26 NOIP模拟赛

9.15noip模拟赛总结

计蒜客2017.9.9 Day1 NOIP模拟赛

2017-9-20 NOIP模拟赛