結果

問題 No.370 道路の掃除
ユーザー jp_stejp_ste
提出日時 2016-05-14 02:46:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 184 ms / 2,000 ms
コード長 1,665 bytes
コンパイル時間 4,188 ms
コンパイル使用メモリ 81,388 KB
実行使用メモリ 54,284 KB
最終ジャッジ日時 2024-10-14 16:53:28
合計ジャッジ時間 9,429 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
53,868 KB
testcase_01 AC 131 ms
54,068 KB
testcase_02 AC 133 ms
53,624 KB
testcase_03 AC 120 ms
52,936 KB
testcase_04 AC 133 ms
53,832 KB
testcase_05 AC 134 ms
54,012 KB
testcase_06 AC 135 ms
54,048 KB
testcase_07 AC 132 ms
53,820 KB
testcase_08 AC 132 ms
53,808 KB
testcase_09 AC 130 ms
53,696 KB
testcase_10 AC 138 ms
53,936 KB
testcase_11 AC 141 ms
54,164 KB
testcase_12 AC 142 ms
53,788 KB
testcase_13 AC 139 ms
54,088 KB
testcase_14 AC 139 ms
54,048 KB
testcase_15 AC 140 ms
54,032 KB
testcase_16 AC 139 ms
54,012 KB
testcase_17 AC 138 ms
54,200 KB
testcase_18 AC 138 ms
54,240 KB
testcase_19 AC 139 ms
53,956 KB
testcase_20 AC 169 ms
54,164 KB
testcase_21 AC 172 ms
54,200 KB
testcase_22 AC 159 ms
54,284 KB
testcase_23 AC 175 ms
54,172 KB
testcase_24 AC 140 ms
54,132 KB
testcase_25 AC 165 ms
54,192 KB
testcase_26 AC 177 ms
54,076 KB
testcase_27 AC 155 ms
53,800 KB
testcase_28 AC 160 ms
54,232 KB
testcase_29 AC 176 ms
54,252 KB
testcase_30 AC 182 ms
54,148 KB
testcase_31 AC 173 ms
54,256 KB
testcase_32 AC 180 ms
53,944 KB
testcase_33 AC 184 ms
54,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Collections;
import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        try (Scanner scan = new Scanner(System.in)) {
            int n = Integer.parseInt(scan.next());
            int m = Integer.parseInt(scan.next());
            ArrayList<Integer> list = new ArrayList<>();
            
            int leftC = 0;
            int rightC = 0;
            for(int i=0; i<m; i++) {
                int v = Integer.parseInt(scan.next());
                if(v > 0) rightC ++;
                if(v < 0) leftC ++;
                list.add(v);
            }
            if( list.indexOf(new Integer(0)) < 0) {
                list.add(new Integer(0));
            } else {
                n--;
            }
            
            Collections.sort(list);
            
            int zeroIndex = list.indexOf(new Integer(0));
            int ans = Integer.MAX_VALUE;
            
            if(zeroIndex == 0) {
                ans = list.get(n);
            } else if(zeroIndex == m) {
                ans = Math.abs(list.get(zeroIndex-n));
            } else {
                for(int i=zeroIndex; i<list.size(); i++) {
                    if(i-n < 0) continue;
                    int right = i;
                    int left = right - n;
                    
                    int v1 = Math.abs(list.get(right)) * 2 + Math.abs(list.get(left));
                    int v2 = Math.abs(list.get(left)) * 2 + Math.abs(list.get(right));
                    ans = Math.min(ans, Math.min(v1, v2));
                }
            }
            System.out.println(ans);
        }
    }
}
0