結果

問題 No.202 1円玉投げ
ユーザー bal4ubal4u
提出日時 2019-06-28 22:12:01
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 687 ms / 5,000 ms
コード長 1,689 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 31,360 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-01 21:28:02
合計ジャッジ時間 5,599 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 226 ms
6,812 KB
testcase_01 AC 109 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 99 ms
6,944 KB
testcase_07 AC 123 ms
6,944 KB
testcase_08 AC 119 ms
6,944 KB
testcase_09 AC 46 ms
6,944 KB
testcase_10 AC 15 ms
6,940 KB
testcase_11 AC 36 ms
6,944 KB
testcase_12 AC 38 ms
6,940 KB
testcase_13 AC 16 ms
6,944 KB
testcase_14 AC 4 ms
6,940 KB
testcase_15 AC 45 ms
6,940 KB
testcase_16 AC 69 ms
6,944 KB
testcase_17 AC 535 ms
6,944 KB
testcase_18 AC 533 ms
6,940 KB
testcase_19 AC 41 ms
6,944 KB
testcase_20 AC 82 ms
6,940 KB
testcase_21 AC 41 ms
6,940 KB
testcase_22 AC 1 ms
6,944 KB
testcase_23 AC 1 ms
6,940 KB
testcase_24 AC 1 ms
6,940 KB
testcase_25 AC 1 ms
6,940 KB
testcase_26 AC 5 ms
6,940 KB
testcase_27 AC 5 ms
6,944 KB
testcase_28 AC 1 ms
6,944 KB
testcase_29 AC 1 ms
6,944 KB
testcase_30 AC 1 ms
6,944 KB
testcase_31 AC 1 ms
6,940 KB
testcase_32 AC 1 ms
6,940 KB
testcase_33 AC 1 ms
6,944 KB
testcase_34 AC 1 ms
6,940 KB
testcase_35 AC 683 ms
6,944 KB
testcase_36 AC 101 ms
6,944 KB
testcase_37 AC 137 ms
6,940 KB
testcase_38 AC 687 ms
6,940 KB
testcase_39 AC 1 ms
6,940 KB
testcase_40 AC 1 ms
6,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function 'in':
main.c:9:14: warning: implicit declaration of function 'getchar_unlocked' [-Wimplicit-function-declaration]
    9 | #define gc() getchar_unlocked()
      |              ^~~~~~~~~~~~~~~~
main.c:15:24: note: in expansion of macro 'gc'
   15 |         int n = 0, c = gc();
      |                        ^~

ソースコード

diff #

// yukicoder: No.202 1円玉投げ
// 2019.6.28 bal4u

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#if 1
#define gc() getchar_unlocked()
#else
#define gc() getchar()
#endif
int in()
{
	int n = 0, c = gc();
	do n = 10 * n + (c & 0xf), c = gc(); while (c >= '0');
	return n;
}

typedef struct { int x, y, id; } T;
T t[100005]; int N;
int id[100005];
char f[100005];

int cmp(const void *a, const void *b) {
	int t = ((T *)a)->x - ((T *)b)->x;
	if (t) return t;
	return ((T *)a)->y - ((T *)b)->y;
}

// 見つからなければ、一つ大きい要素を返す。つまり、 >= x
int low_bound(int x)
{
	int m, l = 0, r = N;

    while (l < r) {
        m = (l+r) >> 1;
        if (t[m].x < x) l = m + 1; else r = m;
    }
	return l;
}

// 見つからなければ、一つ小さい要素を返す
int upper_bound(int x)
{
	int m, l = 0, r = N;

    while (l < r) {
        m = (l+r) >> 1;
        if (t[m].x <= x) l = m + 1; else r = m;
    }
	return l-1;
}

int overlap(int x1, int x2, int y1, int y2) {
	int dx, dy;
	dx = x1 - x2;
	if (dx < 0) dx = -dx;
	if (dx >= 20) return 0;
	dy = y1 - y2;
	if (dy < 0) dy = -dy;
	if (dy >= 20) return 0;
	return (dx*dx + dy*dy) < 400;
}

int main()
{
	int i, j, x, y, r, ans;

	ans = N = in();
	for (i = 0; i < N; i++) t[i].x = in(), t[i].y = in(), t[i].id = i;
	memset(f, 1, N);
	qsort(t, N, sizeof(T), cmp);
	for (i = 0; i < N; i++) id[t[i].id] = i;
	
	for (i = 0; i < N; i++) if (f[i]) {
		x = t[id[i]].x;
		j = low_bound(x-20), r = upper_bound(x+20);
		while (j <= r) {
			y = t[j].id;
			if (f[y] && y != i) {
				if (overlap(x, t[j].x, t[id[i]].y, t[j].y)) f[y] = 0, ans--;
			}
			j++;
		}
	}
	printf("%d\n", ans);
	return 0;
}
0