結果

問題 No.1280 Beyond C
ユーザー pengin_2000pengin_2000
提出日時 2022-10-07 19:26:43
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 1,602 bytes
コンパイル時間 1,346 ms
コンパイル使用メモリ 29,796 KB
実行使用メモリ 4,372 KB
最終ジャッジ日時 2023-09-02 20:31:04
合計ジャッジ時間 3,972 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,372 KB
testcase_01 AC 1 ms
4,368 KB
testcase_02 AC 0 ms
4,368 KB
testcase_03 AC 0 ms
4,368 KB
testcase_04 AC 1 ms
4,368 KB
testcase_05 AC 0 ms
4,368 KB
testcase_06 AC 1 ms
4,368 KB
testcase_07 AC 1 ms
4,372 KB
testcase_08 AC 0 ms
4,372 KB
testcase_09 AC 1 ms
4,368 KB
testcase_10 AC 1 ms
4,372 KB
testcase_11 AC 1 ms
4,372 KB
testcase_12 AC 0 ms
4,372 KB
testcase_13 AC 1 ms
4,368 KB
testcase_14 AC 1 ms
4,372 KB
testcase_15 AC 30 ms
4,368 KB
testcase_16 AC 24 ms
4,372 KB
testcase_17 AC 29 ms
4,368 KB
testcase_18 AC 38 ms
4,372 KB
testcase_19 AC 38 ms
4,372 KB
testcase_20 AC 56 ms
4,368 KB
testcase_21 AC 56 ms
4,368 KB
testcase_22 AC 56 ms
4,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>
long long int h[100005], l;
int comp_h(int long long a, int long long b)
{
	if (h[a] > h[b])
		return 1;
	else
		return -1;
}
void swap_h(long long int a, long long int b)
{
	long long int f = h[a];
	h[a] = h[b];
	h[b] = f;
	return;
}
void push(long long int ne)
{
	h[l] = ne;
	long long int p = l;
	l++;
	for (; p > 0; p = (p - 1) / 2)
		if (comp_h((p - 1) / 2, p) > 0)
			swap_h((p - 1) / 2, p);
	return;
}
long long int pop()
{
	l--;
	swap_h(0, l);
	long long int p = 0;
	for (;;)
	{
		if (2 * p + 2 < l)
		{
			if (comp_h(2 * p + 1, 2 * p + 2) > 0)
			{
				if (comp_h(p, 2 * p + 2) > 0)
					swap_h(p, 2 * p + 2);
				p = 2 * p + 2;
			}
			else
			{
				if (comp_h(p, 2 * p + 1) > 0)
					swap_h(p, 2 * p + 1);
				p = 2 * p + 1;
			}
		}
		else if (2 * p + 1 < l)
		{
			if (comp_h(p, 2 * p + 1) > 0)
				swap_h(p, 2 * p + 1);
			p = 2 * p + 1;
		}
		else
			break;
	}
	return h[l];
}
long long int a[100005], b[100005];
int main()
{
	long long int n, m, c;
	scanf("%lld %lld %lld", &n, &m, &c);
	int i, j;
	for (i = 0; i < n; i++)
		scanf("%lld", &a[i]);
	for (i = 0; i < m; i++)
		scanf("%lld", &b[i]);
	l = 0;
	for (i = 0; i < n; i++)
		push(a[i]);
	for (i = 0; i < n; i++)
		a[i] = pop();
	l = 0;
	for (i = 0; i < m; i++)
		push(b[i]);
	for (i = 0; i < m; i++)
		b[i] = pop();
	long long int cnt = 0;
	b[m] = c + 1;
	for (i = 0, j = m; i < n; i++)
	{
		if (j == m && a[i] * b[m - 1] > c)
			j--;
		if (j < m)
		{
			while (a[i] * b[j] > c)
			{
				j--;
				if (j < 0)
					break;
			}
			j++;
		}
		cnt += m - j;
	}
	printf("%.20lf\n", cnt / (double)(n * m));
	return 0;
}
0