結果

問題 No.1795 AtCoder Heuristic Rating coloring
ユーザー pengin_2000pengin_2000
提出日時 2022-01-16 15:01:24
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 1,502 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 30,848 KB
実行使用メモリ 5,760 KB
最終ジャッジ日時 2024-05-02 17:50:53
合計ジャッジ時間 6,140 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 1 ms
5,376 KB
testcase_25 AC 1 ms
5,376 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 1 ms
5,376 KB
testcase_28 AC 1 ms
5,376 KB
testcase_29 AC 1 ms
5,376 KB
testcase_30 AC 1 ms
5,376 KB
testcase_31 AC 1 ms
5,376 KB
testcase_32 AC 38 ms
5,376 KB
testcase_33 AC 23 ms
5,376 KB
testcase_34 AC 59 ms
5,376 KB
testcase_35 AC 56 ms
5,376 KB
testcase_36 AC 58 ms
5,376 KB
testcase_37 AC 29 ms
5,376 KB
testcase_38 AC 26 ms
5,376 KB
testcase_39 AC 66 ms
5,376 KB
testcase_40 AC 40 ms
5,376 KB
testcase_41 AC 60 ms
5,376 KB
testcase_42 AC 35 ms
5,376 KB
testcase_43 AC 34 ms
5,376 KB
testcase_44 AC 47 ms
5,376 KB
testcase_45 AC 38 ms
5,376 KB
testcase_46 AC 71 ms
5,376 KB
testcase_47 AC 16 ms
5,376 KB
testcase_48 AC 32 ms
5,376 KB
testcase_49 AC 69 ms
5,504 KB
testcase_50 AC 36 ms
5,376 KB
testcase_51 AC 30 ms
5,376 KB
testcase_52 AC 76 ms
5,760 KB
testcase_53 AC 75 ms
5,632 KB
testcase_54 AC 77 ms
5,760 KB
testcase_55 AC 76 ms
5,760 KB
testcase_56 AC 79 ms
5,760 KB
testcase_57 AC 80 ms
5,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>
char s[100005][32];
int h[100005], l;
int strcmp(char s[], char t[])
{
	int i;
	for (i = 0;; i++)
	{
		if (s[i] == '\0' && t[i] == '\0')
			return 0;
		if (s[i] == '\0')
			return -1;
		if (t[i] == '\0')
			return 1;
		if (s[i] > t[i])
			return 1;
		if (s[i] < t[i])
			return -1;
	}
}
int comp_h(int a, int b)
{
	if (strcmp(s[h[a]], s[h[b]]) != 0)
		return strcmp(s[h[a]], s[h[b]]);
	else if (h[a] > h[b])
		return -1;
	else
		return 1;
}
void swap_h(int a, int b)
{
	int f = h[a];
	h[a] = h[b];
	h[b] = f;
	return;
}
void push(int ne)
{
	h[l] = ne;
	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;
}
int pop()
{
	l--;
	swap_h(0, l);
	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];
}
int main()
{
	int n, m;
	scanf("%d %d", &n, &m);
	int a[100005];
	int i, j;
	for (i = 0; i < n + m; i++)
		scanf("%s%d", s[i], &a[i]);
	l = 0;
	for (i = 0; i < n + m; i++)
		push(i);
	j = pop();
	printf("%s %d\n", s[j], a[j]);
	while (l > 0)
	{
		i = pop();
		if (strcmp(s[j], s[i]) != 0)
			printf("%s %d\n", s[i], a[i]);
		j = i;
	}
	return 0;
}
0