码迷,mamicode.com
首页 > 其他好文 > 详细

Codeforces Round #613 (Div. 2) B. Just Eat It!

时间:2020-03-02 22:50:18      阅读:84      评论:0      收藏:0      [点我收藏+]

标签:||   link   strong   stdin   int   ret   freopen   最大   区间   

Link
题意:
求最大区间和所在区间是不是 \(1 \sim n\)
思路:
\(dp[i]\) 是以 \(i\) 为右端的最大区间和
\(dp[i]=max(dp[i-1]+a[i],a[i])\)
代码:

#include<bits/stdc++.h>
 
using namespace std;
 
typedef long long ll;
 
const int N=1e5+5;;
 
int n;
ll a[N];
 
int main()
{
    ios::sync_with_stdio(false);
    cin.tie(0);
    //freopen("in.txt","r",stdin);
    int T;cin>>T;
    while(T--)
    {
        cin>>n;
        ll sum=0;
        ll dp=0;
        int dp_l,dp_r;
        ll maxn=INT_MIN;
        int maxn_l,maxn_r;
        for(int i=1;i<=n;i++)
        {
            cin>>a[i];
            sum+=a[i];
            if(dp<=0) dp=a[i],dp_l=dp_r=i;
            else dp+=a[i],dp_r=i;
            if(maxn<dp) maxn=dp,maxn_l=dp_l,maxn_r=dp_r;
        }
        if(sum>maxn||(sum==maxn&&maxn_l==1&&maxn_r==n)) cout<<"YES"<<endl;
        else cout<<"NO"<<endl;
    }
    return 0;
}

Codeforces Round #613 (Div. 2) B. Just Eat It!

标签:||   link   strong   stdin   int   ret   freopen   最大   区间   

原文地址:https://www.cnblogs.com/c4Lnn/p/12398283.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!