結果

問題 No.370 道路の掃除
ユーザー mitsuomitsuo
提出日時 2016-05-15 21:00:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 173 ms / 2,000 ms
コード長 1,121 bytes
コンパイル時間 2,206 ms
コンパイル使用メモリ 84,132 KB
実行使用メモリ 42,032 KB
最終ジャッジ日時 2024-10-14 16:54:17
合計ジャッジ時間 7,838 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
40,460 KB
testcase_01 AC 117 ms
41,164 KB
testcase_02 AC 116 ms
40,884 KB
testcase_03 AC 122 ms
40,680 KB
testcase_04 AC 117 ms
40,836 KB
testcase_05 AC 116 ms
41,020 KB
testcase_06 AC 115 ms
41,020 KB
testcase_07 AC 115 ms
40,720 KB
testcase_08 AC 114 ms
41,048 KB
testcase_09 AC 105 ms
39,820 KB
testcase_10 AC 122 ms
40,976 KB
testcase_11 AC 131 ms
41,208 KB
testcase_12 AC 130 ms
41,088 KB
testcase_13 AC 124 ms
40,976 KB
testcase_14 AC 130 ms
41,076 KB
testcase_15 AC 126 ms
40,964 KB
testcase_16 AC 134 ms
41,320 KB
testcase_17 AC 124 ms
40,852 KB
testcase_18 AC 128 ms
41,308 KB
testcase_19 AC 128 ms
41,072 KB
testcase_20 AC 169 ms
41,980 KB
testcase_21 AC 161 ms
41,688 KB
testcase_22 AC 155 ms
40,832 KB
testcase_23 AC 170 ms
41,528 KB
testcase_24 AC 131 ms
41,260 KB
testcase_25 AC 157 ms
41,468 KB
testcase_26 AC 156 ms
42,032 KB
testcase_27 AC 142 ms
41,228 KB
testcase_28 AC 150 ms
41,540 KB
testcase_29 AC 164 ms
41,964 KB
testcase_30 AC 169 ms
42,028 KB
testcase_31 AC 152 ms
41,420 KB
testcase_32 AC 167 ms
41,852 KB
testcase_33 AC 173 ms
41,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package jp.fedom.challange.yuki.l2.q370;

import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.List;
import java.util.PriorityQueue;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		int M = sc.nextInt();
		int[] d = new int[M];
		for (int i = 0; i < M; i++) {
			d[i] = sc.nextInt();
		}
		sc.close();
		System.out.println(solve(N, M, d));
	}

	public static int solve(int N, int M, int[] c) {
		List<Integer> posN = new ArrayList<>();
		List<Integer> negN = new ArrayList<>();
		for (int i : c) {
			if (i < 0) {
				negN.add(i * -1);
			} else {
				posN.add(i);
			}
		}

		Collections.sort(posN);
		Collections.sort(negN);

		int min = Integer.MAX_VALUE;
		for (int pN = 0; pN <= N; pN++) {
			int nN = N - pN;
			if (pN <= posN.size() && nN <= negN.size()) {
				int pd = pN - 1 < 0 ? 0 : posN.get(pN - 1);
				int nd = nN - 1 < 0 ? 0 : negN.get(nN - 1);
				int d = Math.min(pd * 2 + nd, pd + nd * 2);
				min = Math.min(d, min);
			}
		}

		return min;
	}
}
0