3-25牛客小白月赛46 B题:子段和
我要发这个帖的意图是我发现了这个题的bug,我的代码有不完善的地方它给我过了哈哈
#include <iostream>
using namespace std;int main()
{
long long left,right,center,n,t;
cin>>n;
cin>>t;
if(t>0) left=t;
else right=t;
while(--n&&t!=0)
{
cin>>t;
if(t>0) left=t;
else right=t;
}
if(n!=0||t==0) cout<<"NO"<<endl;
else if(left+right==0) cout<<"NO"<<endl;
else cout<<"YES"<<endl;
}
/*测试案例
4
1 -2 -1 1
本应输出YES
而我的为NO*/
#牛客bug##笔经#