比赛 20120418s 评测结果 AATTTTTT
题目名称 山海经 最终得分 25
用户昵称 wo shi 刘畅 运行时间 0.000 s
代码语言 Pascal 内存使用 0.00 MiB
提交时间 2012-04-18 11:16:50
显示代码纯文本
var
  max,n,m,i,x,y,l,r,zuo,you:longint;
  s,a:Array[0..1000000]of longint;


begin
  assign(input,'hill.in'); reset(input);
  assign(output,'hill.out'); rewrite(output);
  readln(n,m);
  for i:=1 to n do
  begin
    read(a[i]);
    s[i]:=s[i-1]+a[i];
  end;
  for i:=1 to m do
  begin
    readln(x,y);
    max:=-maxlongint;
    for l:=x to y do
     for r:=l to y do
     if s[r]-s[l-1]>max then
     begin
       max:=s[r]-s[l-1];
       zuo:=l;
       you:=r;
     end;
    writeln(zuo,' ',you,' ',max);
  end;
  close(input);
  close(output);
end.