結果

問題 No.972 選び方のスコア
ユーザー 37zigen37zigen
提出日時 2020-04-02 03:49:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,191 ms / 2,000 ms
コード長 1,283 bytes
コンパイル時間 2,389 ms
コンパイル使用メモリ 78,464 KB
実行使用メモリ 62,740 KB
最終ジャッジ日時 2024-06-27 15:42:31
合計ジャッジ時間 30,462 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 991 ms
60,492 KB
testcase_01 AC 1,191 ms
60,384 KB
testcase_02 AC 1,075 ms
59,824 KB
testcase_03 AC 807 ms
49,824 KB
testcase_04 AC 1,149 ms
59,424 KB
testcase_05 AC 1,058 ms
59,916 KB
testcase_06 AC 1,094 ms
60,160 KB
testcase_07 AC 958 ms
60,276 KB
testcase_08 AC 920 ms
61,552 KB
testcase_09 AC 903 ms
60,696 KB
testcase_10 AC 909 ms
60,192 KB
testcase_11 AC 879 ms
62,740 KB
testcase_12 AC 916 ms
61,216 KB
testcase_13 AC 924 ms
60,568 KB
testcase_14 AC 915 ms
60,808 KB
testcase_15 AC 991 ms
60,284 KB
testcase_16 AC 996 ms
60,252 KB
testcase_17 AC 1,022 ms
60,008 KB
testcase_18 AC 124 ms
41,384 KB
testcase_19 AC 1,080 ms
60,124 KB
testcase_20 AC 1,077 ms
59,736 KB
testcase_21 AC 1,080 ms
61,340 KB
testcase_22 AC 1,079 ms
61,048 KB
testcase_23 AC 966 ms
61,484 KB
testcase_24 AC 1,104 ms
60,452 KB
testcase_25 AC 126 ms
41,392 KB
testcase_26 AC 126 ms
41,260 KB
testcase_27 AC 129 ms
41,320 KB
testcase_28 AC 128 ms
41,372 KB
testcase_29 AC 129 ms
41,172 KB
testcase_30 AC 131 ms
41,032 KB
testcase_31 AC 129 ms
41,176 KB
testcase_32 AC 132 ms
41,340 KB
testcase_33 AC 135 ms
40,852 KB
testcase_34 AC 134 ms
41,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Comparator;
import java.util.Scanner;

class Main {
	public static void main(String[] args) {
		new Main().run();
	}
	
	long sum(int l,int r,long[] sum) {
		return (r>0?sum[r-1]:0)-(l>0?sum[l-1]:0);
	}
	
	void run() {
		Scanner sc=new Scanner(System.in);
		int N=sc.nextInt();
		long[] A=new long[N];
		long[] sum=new long[N];
		for(int i=0;i<N;++i)A[i]=sc.nextLong();
		Arrays.sort(A);
		for(int i=0;i<N;++i)sum[i]=A[i]+(i>0?sum[i-1]:0);

		long ans=0;
		for(int i=0;i<N;++i) {
			int ok=0;
			int ng=1+Math.min(i,N-1-i);
			while(ng-ok>1) {
				int middle=(ok+ng)/2;
				if(A[i-middle]+A[N-middle]-2*A[i]>0) {
					ok=middle;
				}else {
					ng=middle;
				}
			}
			ans=Math.max(ans, sum(N-ok,N,sum)+sum(i-ok,i,sum)-A[i]*2*ok);
		}
		
		
		for(int i=0;i+1<N;++i) {
			int ok=0;
			int ng=1+Math.min(i,N-2-i);//[0,i)(i+1,N-1]
			while(ng-ok>1) {
				int middle=(ok+ng)/2;
				if(A[i-middle]+A[i+1+middle]-A[i]-A[i+1]>0) {
					ok=middle;
				}else {
					ng=middle;
				}
			}
			ans=Math.max(ans, sum(N-ok,N,sum)+sum(i-ok,i,sum)-A[i]*ok-A[i+1]*ok);
		}
		System.out.println(ans);
	}
	
	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

}

0