1. import java.io.BufferedReader;
  2. import java.io.IOException;
  3. import java.io.InputStreamReader;
  4. import java.util.Arrays;
  5. //import java.util.Scanner;
  6. public class Main {
  7. private static long[] a;
  8. private static long[] s;
  9. private static boolean[] st;
  10. private static int n;
  11. public static void main(String[] args) throws NumberFormatException, IOException {
  12. int T;
  13. //Scanner sc = new Scanner(System.in);
  14. BufferedReader sc = new BufferedReader(new InputStreamReader(System.in));
  15. //T = sc.nextInt();
  16. T = Integer.parseInt(sc.readLine().trim());
  17. while(T-- > 0) {
  18. //n = sc.nextInt();
  19. n = Integer.parseInt(sc.readLine().trim());
  20. String[] arr = sc.readLine().trim().split(" ");
  21. a = new long[n + 1];
  22. s = new long[n + 1];
  23. st = new boolean[n + 1];
  24. s[0] = 0;
  25. for(int i = 1; i <= n; i++) {
  26. //s[i] = sc.nextLong();
  27. s[i] = Integer.parseInt(arr[i - 1]);
  28. s[i] += s[i - 1];
  29. }
  30. long s0 = s[0], sn = s[n];
  31. if(s0 > sn) {
  32. long temp = s0;
  33. s0 = sn;
  34. sn = temp;
  35. }
  36. Arrays.sort(s);
  37. for(int i = 0; i <= n; i++) {
  38. if(s[i] == s0) {
  39. s0 = i;
  40. break;
  41. }
  42. }
  43. for (int i = n; i >= 0; i--) {
  44. if(s[i] == sn) {
  45. sn = i;
  46. break;
  47. }
  48. }
  49. int l = 0, r = n;
  50. for(int i = (int)s0; i >= 0; i -= 2) {
  51. a[l++] = s[i];
  52. st[i] = true;
  53. }
  54. for(int i = (int)sn; i <= n; i += 2) {
  55. a[r--] = s[i];
  56. st[i] = true;
  57. }
  58. for(int i = 0; i <= n; i++) {
  59. if(!st[i]) {
  60. a[l++] = s[i];
  61. }
  62. }
  63. long res = 0;
  64. for(int i = 1; i <= n; i++) {
  65. if(Math.abs(a[i] - a[i - 1]) > res) {
  66. res = Math.abs(a[i] - a[i - 1]);
  67. }
  68. }
  69. System.out.println(res);
  70. }
  71. }
  72. }
点赞(0)
 

8.9 分

2 人评分

 

C语言网提供由在职研发工程师或ACM蓝桥杯竞赛优秀选手录制的视频教程,并配有习题和答疑,点击了解:

一点编程也不会写的:零基础C语言学练课程

解决困扰你多年的C语言疑难杂症特性的C语言进阶课程

从零到写出一个爬虫的Python编程课程

只会语法写不出代码?手把手带你写100个编程真题的编程百练课程

信息学奥赛或C++选手的 必学C++课程

蓝桥杯ACM、信息学奥赛的必学课程:算法竞赛课入门课程

手把手讲解近五年真题的蓝桥杯辅导课程

评论列表 共有 0 条评论

暂无评论