結果

問題 No.202 1円玉投げ
ユーザー thorikawathorikawa
提出日時 2015-05-03 23:59:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,238 ms / 5,000 ms
コード長 2,471 bytes
コンパイル時間 2,954 ms
コンパイル使用メモリ 88,472 KB
実行使用メモリ 86,876 KB
最終ジャッジ日時 2024-06-01 19:13:55
合計ジャッジ時間 29,587 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,039 ms
84,720 KB
testcase_01 AC 1,238 ms
85,792 KB
testcase_02 AC 135 ms
54,024 KB
testcase_03 AC 136 ms
53,816 KB
testcase_04 AC 135 ms
53,928 KB
testcase_05 AC 315 ms
58,496 KB
testcase_06 AC 1,062 ms
83,428 KB
testcase_07 AC 1,107 ms
85,436 KB
testcase_08 AC 1,085 ms
84,872 KB
testcase_09 AC 746 ms
69,708 KB
testcase_10 AC 516 ms
61,452 KB
testcase_11 AC 684 ms
66,508 KB
testcase_12 AC 706 ms
66,800 KB
testcase_13 AC 539 ms
61,692 KB
testcase_14 AC 332 ms
59,100 KB
testcase_15 AC 736 ms
67,840 KB
testcase_16 AC 1,050 ms
86,476 KB
testcase_17 AC 1,020 ms
86,316 KB
testcase_18 AC 1,055 ms
86,876 KB
testcase_19 AC 715 ms
67,608 KB
testcase_20 AC 1,006 ms
80,988 KB
testcase_21 AC 759 ms
68,360 KB
testcase_22 AC 214 ms
56,660 KB
testcase_23 AC 220 ms
56,664 KB
testcase_24 AC 213 ms
56,676 KB
testcase_25 AC 213 ms
56,480 KB
testcase_26 AC 220 ms
56,920 KB
testcase_27 AC 218 ms
56,752 KB
testcase_28 AC 215 ms
56,560 KB
testcase_29 AC 212 ms
56,724 KB
testcase_30 AC 220 ms
56,412 KB
testcase_31 AC 215 ms
56,524 KB
testcase_32 AC 216 ms
56,892 KB
testcase_33 AC 217 ms
56,560 KB
testcase_34 AC 217 ms
57,040 KB
testcase_35 AC 1,058 ms
86,492 KB
testcase_36 AC 1,105 ms
85,040 KB
testcase_37 AC 1,195 ms
85,548 KB
testcase_38 AC 985 ms
84,736 KB
testcase_39 AC 189 ms
54,280 KB
testcase_40 AC 190 ms
54,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static class Point {
        int x;
        int y;

        Point(int x, int y) {
            this.x = x;
            this.y = y;
        }

        double dist(Point o) {
            return Math.sqrt((this.x - o.x) * (this.x - o.x) + (this.y - o.y) * (this.y - o.y));
        }

        @Override
        public String toString() {
            return "(" + this.x + ", " + this.y + ")";
        }
    }

    static int getId(int x, int y) {
        return x * 1001 + y;
    }

    static int[] dirx = new int[]{0, 1, 0, -1, 0, 1, 1, -1, -1};
    static int[] diry = new int[]{0, 0, 1, 0, -1, 1, -1, 1, -1};

    public static void main(String[] argv) {
        Scanner scanner = new Scanner(System.in);
        int n = scanner.nextInt();
        int res = 0;
        Map<Integer, List<Point>> data = new HashMap<Integer, List<Point>>();
        for (int i = 0; i < n; i++) {
            int x = scanner.nextInt();
            int y = scanner.nextInt();
            Point p = new Point(x, y);
            x /= 20;
            y /= 20;
            boolean overwrap = false;
            for (int j = 0; j < dirx.length; j++) {
                int nx = dirx[j] + x;
                int ny = diry[j] + y;
                if (nx < 0 || ny < 0 || nx > 1001 || ny > 1001) continue;
                int newKey = getId(nx, ny);
                if (data.containsKey(newKey)) {
                    List<Point> points = data.get(newKey);
                    for (Point p2 : points) {
//                        System.out.println("compare:" + p.toString() + " : " + p2.toString());
                        if (p.dist(p2) < 20) {
//                            System.out.println("overwrap!!");
                            overwrap = true;
                            break;
                        }
                    }
                }
                if (overwrap) {
                    break;
                }
            }
            if (!overwrap) {
                List<Point> list;
                int id = getId(x, y);
                if (data.containsKey(id)) {
                    list = data.get(id);
                } else {
                    list = new ArrayList<Point>();
                    data.put(id, list);
                }
//                System.out.println("add:" + id + ":" + p.toString());
                res++;
                list.add(p);
            }
        }
        System.out.println(res);
    }
}
0