結果

問題 No.202 1円玉投げ
ユーザー thorikawathorikawa
提出日時 2015-05-03 23:59:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,304 ms / 5,000 ms
コード長 2,471 bytes
コンパイル時間 2,928 ms
コンパイル使用メモリ 80,376 KB
実行使用メモリ 76,716 KB
最終ジャッジ日時 2024-12-22 06:40:47
合計ジャッジ時間 32,110 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,132 ms
76,168 KB
testcase_01 AC 1,304 ms
76,716 KB
testcase_02 AC 135 ms
41,192 KB
testcase_03 AC 132 ms
41,204 KB
testcase_04 AC 138 ms
41,088 KB
testcase_05 AC 331 ms
48,588 KB
testcase_06 AC 1,050 ms
72,268 KB
testcase_07 AC 1,188 ms
73,620 KB
testcase_08 AC 1,178 ms
73,640 KB
testcase_09 AC 762 ms
59,184 KB
testcase_10 AC 567 ms
50,920 KB
testcase_11 AC 698 ms
56,552 KB
testcase_12 AC 730 ms
56,836 KB
testcase_13 AC 573 ms
51,872 KB
testcase_14 AC 346 ms
48,864 KB
testcase_15 AC 795 ms
58,324 KB
testcase_16 AC 1,066 ms
75,620 KB
testcase_17 AC 1,092 ms
76,660 KB
testcase_18 AC 1,099 ms
76,632 KB
testcase_19 AC 752 ms
57,256 KB
testcase_20 AC 974 ms
71,296 KB
testcase_21 AC 722 ms
57,008 KB
testcase_22 AC 221 ms
44,016 KB
testcase_23 AC 215 ms
43,360 KB
testcase_24 AC 209 ms
43,568 KB
testcase_25 AC 210 ms
43,300 KB
testcase_26 AC 217 ms
43,512 KB
testcase_27 AC 213 ms
44,052 KB
testcase_28 AC 204 ms
43,528 KB
testcase_29 AC 214 ms
43,556 KB
testcase_30 AC 223 ms
43,760 KB
testcase_31 AC 212 ms
43,508 KB
testcase_32 AC 220 ms
43,956 KB
testcase_33 AC 225 ms
43,580 KB
testcase_34 AC 229 ms
43,860 KB
testcase_35 AC 1,106 ms
76,408 KB
testcase_36 AC 1,156 ms
75,016 KB
testcase_37 AC 1,227 ms
74,068 KB
testcase_38 AC 1,023 ms
76,560 KB
testcase_39 AC 183 ms
42,004 KB
testcase_40 AC 181 ms
41,836 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