結果

問題 No.507 ゲーム大会(チーム決め)
ユーザー tentententen
提出日時 2021-03-08 19:39:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 737 ms / 3,000 ms
コード長 1,268 bytes
コンパイル時間 3,784 ms
コンパイル使用メモリ 77,004 KB
実行使用メモリ 62,280 KB
最終ジャッジ日時 2024-10-10 11:33:46
合計ジャッジ時間 13,082 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,428 KB
testcase_01 AC 129 ms
53,700 KB
testcase_02 AC 129 ms
54,040 KB
testcase_03 AC 116 ms
52,720 KB
testcase_04 AC 130 ms
53,764 KB
testcase_05 AC 130 ms
53,720 KB
testcase_06 AC 130 ms
54,332 KB
testcase_07 AC 671 ms
62,280 KB
testcase_08 AC 666 ms
59,712 KB
testcase_09 AC 524 ms
59,132 KB
testcase_10 AC 525 ms
59,040 KB
testcase_11 AC 588 ms
59,568 KB
testcase_12 AC 535 ms
59,164 KB
testcase_13 AC 737 ms
59,548 KB
testcase_14 AC 660 ms
59,532 KB
testcase_15 AC 644 ms
59,472 KB
testcase_16 AC 653 ms
59,924 KB
testcase_17 AC 140 ms
54,000 KB
testcase_18 AC 134 ms
54,012 KB
testcase_19 AC 130 ms
54,144 KB
testcase_20 AC 132 ms
53,896 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 k = sc.nextInt();
        int[] scores = new int[n + 1];
        scores[0] = Integer.MIN_VALUE;
        scores[n] = Integer.MAX_VALUE / 2;
        for (int i = 1; i < n; i++) {
            scores[i] = sc.nextInt();
        }
        Arrays.sort(scores);
        int left = 0;
        int right = n;
        while (right - left > 1) {
            int x = (left + right) / 2;
            int idx = 1;
            int count = 0;
            for (int i = n - 1; i > idx; i--) {
                if (i == x) {
                    continue;
                }
                while (scores[i] + scores[idx] <= scores[x] + k || idx == x) {
                    idx++;
                }
                if (idx < i) {
                    count++;
                    idx++;
                }
            }
            if (count < m) {
                right = x;
            } else {
                left = x;
            }
        }
        if (right == n) {
            System.out.println(-1);
        } else {
            System.out.println(scores[right]);
        }
    }
}
0