记录编号 49499 评测结果 AAAAAAAAAA
题目名称 [東方S1] 琪露诺 最终得分 100
用户昵称 GravatarAbel·S 是否通过 通过
代码语言 Pascal 运行时间 0.126 s
提交时间 2012-11-08 11:46:40 内存使用 7.79 MiB
显示代码纯文本
  1. program cojs_p920;
  2. var
  3. pos,q,a,f,next:array[0..400000] of longint;
  4. i,j,k,l,r,m,n,he,ta:longint;
  5. procedure ass;
  6. begin
  7. assign(input,'iceroad.in');
  8. assign(output,'iceroad.out');
  9. reset(input);
  10. rewrite(output);
  11. end;
  12. procedure cls;
  13. begin
  14. close(input);
  15. close(output);
  16. end;
  17. procedure init;
  18. var
  19. i:longint;
  20. begin
  21. ass;
  22. readln(n,l,r);
  23. for i:=0 to n do
  24. read(a[i]);
  25. readln;
  26. fillchar(f,sizeof(f),0);
  27. fillchar(next,sizeof(next),0);
  28. end;
  29. begin
  30. init;
  31. f[n+1]:=0;
  32. he:=0;
  33. ta:=0;
  34. for i:=n+l downto n+1 do
  35. f[i]:=-1;
  36. q[0]:=0;
  37. pos[0]:=-1;
  38. for i:=n downto 0 do
  39. begin
  40. if q[ta]<=f[i+l] then begin
  41. while (q[ta]<=f[i+l])and (ta>=he) do dec(ta);
  42. inc(ta);
  43. q[ta]:=f[i+l]; pos[ta]:=i+l;
  44. end;
  45. while pos[he]>i+r do
  46. inc(he);
  47. f[i]:=q[ta];
  48. next[i]:=pos[ta];
  49. inc(f[i],a[i]);
  50. end;
  51. writeln(f[0]);
  52. write('0',' ');
  53. i:=0;
  54. repeat
  55. write(next[i],' ');
  56. i:=next[i];
  57. until i=-1;
  58. cls;
  59. end.