結果
問題 | No.507 ゲーム大会(チーム決め) |
ユーザー | htensai |
提出日時 | 2020-01-31 08:34:00 |
言語 | Java (openjdk 23) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,729 bytes |
コンパイル時間 | 2,356 ms |
コンパイル使用メモリ | 79,932 KB |
実行使用メモリ | 56,884 KB |
最終ジャッジ日時 | 2024-09-17 06:45:03 |
合計ジャッジ時間 | 6,498 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 55 ms
49,976 KB |
testcase_01 | AC | 54 ms
50,312 KB |
testcase_02 | AC | 54 ms
50,504 KB |
testcase_03 | WA | - |
testcase_04 | AC | 54 ms
50,388 KB |
testcase_05 | AC | 56 ms
50,356 KB |
testcase_06 | WA | - |
testcase_07 | AC | 225 ms
56,496 KB |
testcase_08 | WA | - |
testcase_09 | AC | 178 ms
55,328 KB |
testcase_10 | AC | 182 ms
55,260 KB |
testcase_11 | AC | 180 ms
55,488 KB |
testcase_12 | AC | 181 ms
55,384 KB |
testcase_13 | AC | 235 ms
56,884 KB |
testcase_14 | AC | 222 ms
56,520 KB |
testcase_15 | AC | 215 ms
56,148 KB |
testcase_16 | AC | 215 ms
55,980 KB |
testcase_17 | AC | 54 ms
50,360 KB |
testcase_18 | AC | 53 ms
50,136 KB |
testcase_19 | AC | 54 ms
50,400 KB |
testcase_20 | AC | 54 ms
50,408 KB |
ソースコード
import java.util.*;import java.io.*;public class Main {static int[] dp;public static void main(String[] args) throws Exception {BufferedReader br = new BufferedReader(new InputStreamReader(System.in));String[] first = br.readLine().split(" ", 2);int n = Integer.parseInt(first[0]);int mm = Integer.parseInt(first[1]);int mine = Integer.parseInt(br.readLine());int[] points = new int[n - 1];for (int i = 0; i < n - 1; i++) {points[i] = Integer.parseInt(br.readLine());}Arrays.sort(points);int left = 0;int right = n - 2;if (check(right, mine + points[right], points) >= mm) {System.out.println(-1);return;}if (check(left, mine + points[left], points) < mm) {System.out.println(points[left] + ":");return;}while (right - left > 1) {int m = (left + right) / 2;if (check(m, mine + points[m], points) >= mm) {left = m;} else {right = m;}}System.out.println(points[right]);}static int check(int target, int score, int[] arr) {int left = 0;int right = arr.length - 1;int count = 0;while (left < right) {if (left == target) {left++;} else if(right == target) {right--;} else if (arr[left] + arr[right] <= score) {left++;} else {count++;left++;right--;}}return count;}}