比赛 |
EYOI与SBOI开学欢乐赛4th |
评测结果 |
AWWWWWWWWT |
题目名称 |
白色谎言 |
最终得分 |
10 |
用户昵称 |
该账号已注销 |
运行时间 |
4.111 s |
代码语言 |
C++ |
内存使用 |
2.87 MiB |
提交时间 |
2022-09-12 20:38:20 |
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
int m,n,a[1010],qzh[1010]={0};
int main(){
freopen("white_lies.in","r",stdin);
freopen("white_lies.out","w",stdout);
while(cin>>m){
int ans=0;
cin>>n;
for(int j=1;j<=n;j++){
cin>>a[j];
}
int L,R;
for(int i=1;i<=m;i++){
int u=0,l=1,mx=0,mxx=0;
for(int j=L;j<=R;j++){
a[j]=0;
}
for(int j=1;j<=n;j++){
if(u+a[j]<0){
if(u>mx){
if(u>mxx){
mxx=u;
L=l,R=j-1;
}
}
mx=0;
l=j+1;u=0;
}
else{
u+=a[j];
if(u>mx){
mx=u;
if(u>mxx){
mxx=u;
L=l,R=j;
}
}
}
}ans+=mxx;
}
cout<<ans<<endl;
}
return 0;
}