結果

問題 No.370 道路の掃除
ユーザー htensaihtensai
提出日時 2019-11-21 10:16:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 197 ms / 2,000 ms
コード長 1,217 bytes
コンパイル時間 2,240 ms
コンパイル使用メモリ 77,172 KB
実行使用メモリ 43,100 KB
最終ジャッジ日時 2024-10-09 12:40:19
合計ジャッジ時間 8,794 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,216 KB
testcase_01 AC 130 ms
40,988 KB
testcase_02 AC 131 ms
41,204 KB
testcase_03 AC 128 ms
41,176 KB
testcase_04 AC 130 ms
41,188 KB
testcase_05 AC 130 ms
41,640 KB
testcase_06 AC 131 ms
41,376 KB
testcase_07 AC 131 ms
41,044 KB
testcase_08 AC 130 ms
41,176 KB
testcase_09 AC 128 ms
40,984 KB
testcase_10 AC 138 ms
41,624 KB
testcase_11 AC 138 ms
41,344 KB
testcase_12 AC 139 ms
41,316 KB
testcase_13 AC 138 ms
41,684 KB
testcase_14 AC 138 ms
41,160 KB
testcase_15 AC 138 ms
41,288 KB
testcase_16 AC 140 ms
41,652 KB
testcase_17 AC 139 ms
41,176 KB
testcase_18 AC 138 ms
41,436 KB
testcase_19 AC 137 ms
41,172 KB
testcase_20 AC 197 ms
42,336 KB
testcase_21 AC 186 ms
42,492 KB
testcase_22 AC 182 ms
41,968 KB
testcase_23 AC 185 ms
42,148 KB
testcase_24 AC 142 ms
41,448 KB
testcase_25 AC 175 ms
41,676 KB
testcase_26 AC 184 ms
42,168 KB
testcase_27 AC 170 ms
41,344 KB
testcase_28 AC 178 ms
42,140 KB
testcase_29 AC 182 ms
41,984 KB
testcase_30 AC 189 ms
43,100 KB
testcase_31 AC 183 ms
42,096 KB
testcase_32 AC 183 ms
42,244 KB
testcase_33 AC 191 ms
42,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int m = sc.nextInt();
		int[] arr = new int[m];
		for (int i = 0; i < m; i++) {
		    arr[i] = sc.nextInt();
		}
		Arrays.sort(arr);
		int minStart;
		if (arr[0] >= 0) {
		    minStart = 0;
		} else if (arr[m - 1] < 0) {
		    minStart = m;
		} else {
    		int left = 0; 
    		int right = arr.length - 1;
    		while (right - left > 1) {
    		    int mm = (left + right) / 2;
    		    if (arr[mm] >= 0) {
    		        right = mm;
    		    } else {
    		        left = mm;
    		    }
    		}
    		minStart = right;
		}
		int min = Integer.MAX_VALUE;
		for (int i = 0; i <= n; i++) {
		    if (minStart - i < 0 || minStart + n - i - 1 > m - 1) {
		        continue;
		    }
		    if (i == 0) {
		        min = Math.min(min, arr[minStart + n - i - 1]);
		    } else if (i == n) {
		        min = Math.min(min, - arr[minStart - i]);
		    } else {
    		    min = Math.min(min, - arr[minStart - i] * 2 + arr[minStart + n - i - 1]);
    		    min = Math.min(min, - arr[minStart - i] + arr[minStart + n - i - 1] * 2);
		    }
		}
	    System.out.println(min);
	}
}
0