比赛 20121106 评测结果 AWWAWWWWAWWWWWW
题目名称 二十一点 最终得分 20
用户昵称 亟隐 运行时间 0.484 s
代码语言 Pascal 内存使用 0.16 MiB
提交时间 2012-11-06 11:39:16
显示代码纯文本
  1. var f,a:array[-10..1100]of longint;
  2. n,i,j,x,y,k:longint;
  3.  
  4. procedure init;
  5. begin
  6. readln(n);
  7. for i:=1 to n do read(a[i]);
  8. for i:=1 to n do f[i]:=-100000000;
  9. end;
  10.  
  11. function try(x,y,l,r,k,b,b2:longint):boolean;
  12. begin
  13. if l>r then
  14. begin
  15. if f[i]<-1000000 then f[i]:=0;
  16. if x>=y then exit(false) else exit(true);
  17. end;
  18. if (x>21)or(y>21) then exit(false);
  19. if (b=0)and(b2=0) then exit(false);
  20. if k=0 then
  21. begin
  22. if (b=1)and(x<=16) then if try(x+a[l],y,l+1,r,1-k,b,b2) then exit(true);
  23. exit(try(x,y,l,r,1-k,0,b2));
  24. end else
  25. begin
  26. if b2=1 then if try(x,y+a[l],l+1,r,1-k,b,b2) then exit(true);
  27. exit(try(x,y,l,r,1-k,b,0));
  28. end;
  29. exit(false);
  30. end;
  31.  
  32. function deal(l,r:longint):boolean;
  33. begin
  34. x:=a[l]+a[l+2]; y:=a[l+1]+a[l+3];
  35. l:=l+4;
  36. exit(try(x,y,l,r,0,1,1));
  37. end;
  38.  
  39. procedure work;
  40. begin
  41. for i:=1 to n do
  42. for j:=0 to i-6 do
  43. begin
  44. if f[j]+1>f[i] then if deal(j+1,i) then f[i]:=f[j]+1;
  45. if (f[i]<-10000000)and(f[j]>=0) then deal(j+1,i);
  46. end;
  47. x:=0;
  48. for i:=1 to n do if f[i]>x then x:=f[i];
  49. writeln(x);
  50. end;
  51.  
  52. begin
  53. assign(input,'jack.in');reset(input);
  54. assign(output,'jack.out');rewrite(output);
  55. init;
  56. work;
  57. close(input);close(output);
  58. end.