結果

問題 No.1265 Balloon Survival
ユーザー tentententen
提出日時 2020-10-26 09:15:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 652 ms / 2,000 ms
コード長 1,619 bytes
コンパイル時間 2,225 ms
コンパイル使用メモリ 78,364 KB
実行使用メモリ 79,140 KB
最終ジャッジ日時 2024-07-21 21:16:29
合計ジャッジ時間 14,912 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
53,996 KB
testcase_01 AC 134 ms
54,000 KB
testcase_02 AC 132 ms
53,968 KB
testcase_03 AC 133 ms
54,128 KB
testcase_04 AC 133 ms
53,684 KB
testcase_05 AC 140 ms
53,896 KB
testcase_06 AC 137 ms
53,924 KB
testcase_07 AC 135 ms
54,052 KB
testcase_08 AC 137 ms
53,840 KB
testcase_09 AC 136 ms
54,052 KB
testcase_10 AC 136 ms
53,848 KB
testcase_11 AC 136 ms
53,852 KB
testcase_12 AC 141 ms
53,912 KB
testcase_13 AC 135 ms
54,232 KB
testcase_14 AC 289 ms
59,428 KB
testcase_15 AC 260 ms
56,612 KB
testcase_16 AC 208 ms
54,204 KB
testcase_17 AC 429 ms
64,488 KB
testcase_18 AC 211 ms
56,208 KB
testcase_19 AC 214 ms
56,292 KB
testcase_20 AC 280 ms
59,496 KB
testcase_21 AC 328 ms
62,428 KB
testcase_22 AC 283 ms
59,408 KB
testcase_23 AC 302 ms
60,252 KB
testcase_24 AC 636 ms
78,796 KB
testcase_25 AC 632 ms
79,032 KB
testcase_26 AC 627 ms
78,916 KB
testcase_27 AC 624 ms
78,724 KB
testcase_28 AC 646 ms
78,676 KB
testcase_29 AC 652 ms
79,000 KB
testcase_30 AC 632 ms
79,104 KB
testcase_31 AC 633 ms
78,916 KB
testcase_32 AC 635 ms
79,140 KB
testcase_33 AC 639 ms
79,072 KB
testcase_34 AC 142 ms
53,924 KB
testcase_35 AC 132 ms
53,932 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[] xs = new int[n];
        int[] ys = new int[n];
        for (int i = 0; i < n; i++) {
            xs[i] = sc.nextInt();
            ys[i] = sc.nextInt();
        }
        PriorityQueue<Unit> queue = new PriorityQueue<>();
        for (int i = 0; i < n - 1; i++) {
            for (int j = i + 1; j < n; j++) {
                queue.add(new Unit(i, j, xs[i] - xs[j], ys[i] - ys[j]));
            }
        }
        int count = 0;
        boolean[] used = new boolean[n];
        while (queue.size() > 0) {
            Unit u = queue.poll();
            if (used[u.left] || used[u.right]) {
                continue;
            }
            if (u.left == 0) {
                used[u.right] = true;
                count++;
            } else {
                used[u.left] = true;
                used[u.right] = true;
            }
        }
        System.out.println(count);
    }
    
    static class Unit implements Comparable<Unit> {
        int left;
        int right;
        long dist;
        
        public Unit(int left, int right, long x, long y) {
            this.left = left;
            this.right = right;
            dist = x * x + y * y;
        }
        
        public int compareTo(Unit another) {
            if (dist == another.dist) {
                return 0;
            } else if (dist < another.dist) {
                return -1;
            } else {
                return 1;
            }
        }
    }
}
0