結果

問題 No.1265 Balloon Survival
ユーザー tentententen
提出日時 2020-10-26 09:12:36
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,637 bytes
コンパイル時間 2,783 ms
コンパイル使用メモリ 78,264 KB
実行使用メモリ 69,792 KB
最終ジャッジ日時 2024-07-21 21:16:04
合計ジャッジ時間 17,752 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,528 KB
testcase_01 AC 130 ms
41,584 KB
testcase_02 AC 134 ms
41,356 KB
testcase_03 AC 137 ms
41,276 KB
testcase_04 AC 138 ms
41,640 KB
testcase_05 AC 139 ms
41,360 KB
testcase_06 AC 141 ms
41,568 KB
testcase_07 AC 139 ms
41,044 KB
testcase_08 AC 138 ms
41,544 KB
testcase_09 AC 136 ms
41,388 KB
testcase_10 AC 138 ms
41,332 KB
testcase_11 AC 141 ms
41,392 KB
testcase_12 AC 145 ms
41,688 KB
testcase_13 AC 139 ms
41,524 KB
testcase_14 AC 289 ms
48,264 KB
testcase_15 AC 276 ms
44,536 KB
testcase_16 AC 217 ms
42,852 KB
testcase_17 AC 459 ms
54,744 KB
testcase_18 AC 221 ms
42,900 KB
testcase_19 AC 228 ms
42,908 KB
testcase_20 AC 302 ms
47,360 KB
testcase_21 AC 332 ms
51,232 KB
testcase_22 AC 318 ms
47,752 KB
testcase_23 AC 325 ms
47,724 KB
testcase_24 AC 689 ms
69,560 KB
testcase_25 AC 677 ms
69,528 KB
testcase_26 AC 686 ms
69,372 KB
testcase_27 AC 687 ms
69,128 KB
testcase_28 AC 682 ms
69,480 KB
testcase_29 AC 720 ms
69,420 KB
testcase_30 AC 702 ms
69,540 KB
testcase_31 AC 692 ms
69,792 KB
testcase_32 AC 703 ms
69,500 KB
testcase_33 AC 705 ms
69,568 KB
testcase_34 AC 152 ms
41,572 KB
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

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;
        double dist;
        
        public Unit(int left, int right, int x, int y) {
            this.left = left;
            this.right = right;
            dist = Math.pow(x, 2) + Math.pow(y, 2);
        }
        
        public int compareTo(Unit another) {
            if (dist == another.dist) {
                return 0;
            } else if (dist < another.dist) {
                return -1;
            } else {
                return 1;
            }
        }
    }
}
0