結果

問題 No.728 ギブ and テイク
ユーザー bal4ubal4u
提出日時 2019-08-19 11:58:52
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 177 ms / 3,000 ms
コード長 1,531 bytes
コンパイル時間 414 ms
コンパイル使用メモリ 31,488 KB
実行使用メモリ 18,528 KB
最終ジャッジ日時 2024-10-03 03:42:00
合計ジャッジ時間 4,934 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
7,916 KB
testcase_02 AC 2 ms
7,916 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
7,916 KB
testcase_07 AC 2 ms
7,916 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 2 ms
6,824 KB
testcase_11 AC 1 ms
6,820 KB
testcase_12 AC 2 ms
6,820 KB
testcase_13 AC 9 ms
6,820 KB
testcase_14 AC 15 ms
6,820 KB
testcase_15 AC 8 ms
6,820 KB
testcase_16 AC 15 ms
6,820 KB
testcase_17 AC 13 ms
6,820 KB
testcase_18 AC 123 ms
14,192 KB
testcase_19 AC 131 ms
14,236 KB
testcase_20 AC 155 ms
15,548 KB
testcase_21 AC 138 ms
15,492 KB
testcase_22 AC 53 ms
9,920 KB
testcase_23 AC 35 ms
7,288 KB
testcase_24 AC 104 ms
13,296 KB
testcase_25 AC 100 ms
11,828 KB
testcase_26 AC 51 ms
9,340 KB
testcase_27 AC 177 ms
18,000 KB
testcase_28 AC 120 ms
18,528 KB
testcase_29 AC 1 ms
6,816 KB
testcase_30 AC 2 ms
6,820 KB
testcase_31 AC 2 ms
7,912 KB
testcase_32 AC 2 ms
6,820 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function 'in':
main.c:11:14: warning: implicit declaration of function 'getchar_unlocked' [-Wimplicit-function-declaration]
   11 | #define gc() getchar_unlocked()
      |              ^~~~~~~~~~~~~~~~
main.c:17:24: note: in expansion of macro 'gc'
   17 |         int n = 0, c = gc();
      |                        ^~

ソースコード

diff #

// yukicoder: No.728 ギブ and テイク
// bal4u 2019.8.19

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

typedef long long ll;

//// 入出力関係
#if 1
#define gc() getchar_unlocked()
#else
#define gc() getchar()
#endif

int in() { // 非負整数の入力
	int n = 0, c = gc();
	do n = 10 * n + (c & 0xf); while ((c = gc()) >= '0');
	return n;
}

#define MAX 300005

//// bit木 1-indexedに注意
int bit[MAX], bitn;
void add(int i, int v) { while (i <= bitn) bit[i] += v, i += i & -i; }
void add1(int i) { while (i <= bitn) bit[i]++, i += i & -i; }
int sum(int i) { int s = 0; while (i > 0) s += bit[i], i -= i & -i; return s; }

typedef struct { int v, i, id; } T;
T tbl[2*MAX]; int M;
int A[MAX], L[MAX], R[MAX]; int N;

// a[i]>key という条件を満たす最小のi
int upper_bound(int x) {
	int m, l = 0, r = N;
	while (l+1 < r) {
		m = (l+r) >> 1;
		if (A[m] <= x) l = m; else r = m;
	}
	return A[l] <= x? r: l;
}

int cmp(const void *u, const void *v) {
	int t;
	if (t = ((T *)u)->v - ((T *)v)->v) return t;
	return ((T *)u)->id - ((T *)v)->id;
}

int main()
{
	int i, j;
	ll ans;
	
	N = in();
	for (i = 0; i < N; i++) A[i] = in();
	j = 0; for (i = 0; i < N; i++) {
		L[i] = A[i]-in(), R[i] = A[i]+in();
		tbl[j].i = i, tbl[j].id = 1, tbl[j++].v = A[i];
		tbl[j].i = i, tbl[j++].v = L[i];
	}
	M = N << 1;	qsort(tbl, M, sizeof(T), cmp);
	
	ans = 0, bitn = N;
	for (j = 0; j < M; j++) {
		i = tbl[j].i;
		if (!tbl[j].id) add1(i+1);
		else ans += sum(upper_bound(R[i])) - sum(i+1);
	}
	printf("%lld\n", ans);
	return 0;
}
0