Pagini recente » Rating UPB Sanduleac Zamfir Pop (UPB_VODA) | Cod sursa (job #1811518) | Cod sursa (job #291092) | Cod sursa (job #1684079) | Cod sursa (job #472679)
Cod sursa(job #472679)
#include<fstream.h>
ifstream f("ssm.in");
ofstream g("ssm.out");
int n,ic,jc,best,ib,jb,a,k,bestc;
int main()
{
f>>n;
bestc=best=INT_MIN;
ic=1;
for(k=1;k<=n;k++)
{f>>a;
if(bestc<0) {bestc=a;ic=k;jc=k;}
else {bestc+=a;jc=k;}
if(bestc>best) {best=bestc; ib=ic; jb=jc;}}
g<<best<<' '<<ib<<' '<<jb<<'\n';
f.close(); g.close();
return 0;
}