結果

問題 No.202 1円玉投げ
ユーザー fujisufujisu
提出日時 2015-05-09 05:17:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 2,863 ms / 5,000 ms
コード長 3,311 bytes
コンパイル時間 2,235 ms
コンパイル使用メモリ 75,708 KB
実行使用メモリ 88,544 KB
最終ジャッジ日時 2023-08-23 22:36:50
合計ジャッジ時間 43,910 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,217 ms
87,212 KB
testcase_01 AC 1,875 ms
84,880 KB
testcase_02 AC 53 ms
52,336 KB
testcase_03 AC 54 ms
52,460 KB
testcase_04 AC 54 ms
52,256 KB
testcase_05 AC 189 ms
61,008 KB
testcase_06 AC 1,450 ms
78,256 KB
testcase_07 AC 1,493 ms
84,284 KB
testcase_08 AC 1,635 ms
84,064 KB
testcase_09 AC 1,040 ms
75,648 KB
testcase_10 AC 486 ms
72,840 KB
testcase_11 AC 991 ms
75,768 KB
testcase_12 AC 1,012 ms
75,532 KB
testcase_13 AC 549 ms
72,812 KB
testcase_14 AC 200 ms
62,320 KB
testcase_15 AC 971 ms
75,936 KB
testcase_16 AC 2,424 ms
87,512 KB
testcase_17 AC 2,276 ms
82,788 KB
testcase_18 AC 2,185 ms
80,888 KB
testcase_19 AC 954 ms
75,384 KB
testcase_20 AC 1,219 ms
78,012 KB
testcase_21 AC 596 ms
66,860 KB
testcase_22 AC 149 ms
58,748 KB
testcase_23 AC 156 ms
58,540 KB
testcase_24 AC 99 ms
54,284 KB
testcase_25 AC 98 ms
56,624 KB
testcase_26 AC 151 ms
58,952 KB
testcase_27 AC 156 ms
59,004 KB
testcase_28 AC 99 ms
56,368 KB
testcase_29 AC 106 ms
56,636 KB
testcase_30 AC 106 ms
56,532 KB
testcase_31 AC 95 ms
56,452 KB
testcase_32 AC 107 ms
56,532 KB
testcase_33 AC 114 ms
56,628 KB
testcase_34 AC 122 ms
57,684 KB
testcase_35 AC 2,707 ms
77,824 KB
testcase_36 AC 2,695 ms
88,544 KB
testcase_37 AC 1,843 ms
84,244 KB
testcase_38 AC 2,863 ms
82,944 KB
testcase_39 AC 91 ms
54,264 KB
testcase_40 AC 82 ms
53,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.IOException;
import java.util.InputMismatchException;
import java.util.TreeSet;

public class Main {
	class Point implements Comparable<Point> {
		int x, y;

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

		@Override
		public int compareTo(Point o) {
			return this.x != o.x ? this.x - o.x : this.y - o.y;
		}
	}

	boolean isIntersect(Point a, Point b) {
		return (a.x - b.x) * (a.x - b.x) + (a.y - b.y) * (a.y - b.y) < 400;
	}

	void run() {
		MyScanner sc = new MyScanner();

		TreeSet<Point>[] X = new TreeSet[20001];
		TreeSet<Point>[] Y = new TreeSet[20001];
		for (int i = 0; i < 20001; i++) {
			X[i] = new TreeSet<Point>();
			Y[i] = new TreeSet<Point>();
		}

		int n = sc.nextInt();
		int ans = 0;
		L: for (int i = 0; i < n; i++) {
			int x = sc.nextInt();
			int y = sc.nextInt();
			Point p = new Point(x, y);

			for (int j = Math.max(0, x - 20); j <= Math.min(20000, x + 20); j++) {
				for (Point q : X[j]) {
					if (isIntersect(p, q)) {
						continue L;
					}
					if (20 < q.x - p.x) {
						break;
					}
				}
			}
			for (int j = Math.max(0, y - 10); j <= Math.min(20000, y + 20); j++) {
				for (Point q : Y[j]) {
					if (isIntersect(p, q)) {
						continue L;
					}
					if (20 < q.y - p.y) {
						break;
					}
				}
			}
			X[x].add(p);
			Y[y].add(p);
			ans++;
		}
		System.out.println(ans);
	}

	public static void main(String[] args) {
		new Main().run();
	}

	public void mapDebug(int[][] a) {
		System.out.println("--------map display---------");
		for (int i = 0; i < a.length; i++) {
			for (int j = 0; j < a[i].length; j++) {
				System.out.printf("%3d ", a[i][j]);
			}
			System.out.println();
		}
		System.out.println("----------------------------" + '\n');
	}

	class MyScanner {
		int read() {
			try {
				return System.in.read();
			} catch (IOException e) {
				throw new InputMismatchException();
			}
		}

		boolean isSpaceChar(int c) {
			return c == ' ' || c == '\n' || c == '\r' || c == '\t' || c == -1;
		}

		boolean isEndline(int c) {
			return c == '\n' || c == '\r' || c == -1;
		}

		int nextInt() {
			return Integer.parseInt(next());
		}

		int[] nextIntArray(int n) {
			int[] array = new int[n];
			for (int i = 0; i < n; i++)
				array[i] = nextInt();
			return array;
		}

		long nextLong() {
			return Long.parseLong(next());
		}

		long[] nextLongArray(int n) {
			long[] array = new long[n];
			for (int i = 0; i < n; i++)
				array[i] = nextLong();
			return array;
		}

		double nextDouble() {
			return Double.parseDouble(next());
		}

		double[] nextDoubleArray(int n) {
			double[] array = new double[n];
			for (int i = 0; i < n; i++)
				array[i] = nextDouble();
			return array;
		}

		String next() {
			int c = read();
			while (isSpaceChar(c))
				c = read();
			StringBuilder res = new StringBuilder();
			do {
				res.appendCodePoint(c);
				c = read();
			} while (!isSpaceChar(c));
			return res.toString();
		}

		String[] nextStringArray(int n) {
			String[] array = new String[n];
			for (int i = 0; i < n; i++)
				array[i] = next();

			return array;
		}

		String nextLine() {
			int c = read();
			while (isEndline(c))
				c = read();
			StringBuilder res = new StringBuilder();
			do {
				res.appendCodePoint(c);
				c = read();
			} while (!isEndline(c));
			return res.toString();
		}
	}
}
0