結果

問題 No.2957 Combo Deck Builder
ユーザー ygussanyygussany
提出日時 2024-11-08 22:53:03
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 140 ms / 1,000 ms
コード長 1,815 bytes
コンパイル時間 516 ms
コンパイル使用メモリ 31,744 KB
実行使用メモリ 7,296 KB
最終ジャッジ日時 2024-11-08 22:53:13
合計ジャッジ時間 6,381 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 122 ms
5,888 KB
testcase_07 AC 140 ms
5,760 KB
testcase_08 AC 132 ms
5,760 KB
testcase_09 AC 124 ms
5,760 KB
testcase_10 AC 127 ms
5,632 KB
testcase_11 AC 134 ms
5,888 KB
testcase_12 AC 128 ms
5,760 KB
testcase_13 AC 136 ms
5,760 KB
testcase_14 AC 124 ms
5,632 KB
testcase_15 AC 130 ms
5,632 KB
testcase_16 AC 119 ms
5,632 KB
testcase_17 AC 115 ms
5,632 KB
testcase_18 AC 120 ms
5,760 KB
testcase_19 AC 129 ms
5,632 KB
testcase_20 AC 128 ms
5,632 KB
testcase_21 AC 121 ms
5,632 KB
testcase_22 AC 114 ms
5,760 KB
testcase_23 AC 116 ms
5,760 KB
testcase_24 AC 119 ms
5,632 KB
testcase_25 AC 112 ms
5,632 KB
testcase_26 AC 122 ms
7,168 KB
testcase_27 AC 125 ms
7,288 KB
testcase_28 AC 137 ms
7,264 KB
testcase_29 AC 140 ms
7,192 KB
testcase_30 AC 95 ms
7,236 KB
testcase_31 AC 89 ms
7,280 KB
testcase_32 AC 86 ms
7,296 KB
testcase_33 AC 96 ms
7,284 KB
testcase_34 AC 60 ms
5,248 KB
testcase_35 AC 66 ms
5,248 KB
testcase_36 AC 1 ms
5,248 KB
testcase_37 AC 1 ms
5,248 KB
testcase_38 AC 1 ms
5,248 KB
testcase_39 AC 1 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

typedef struct {
	int key, id;
} data;

typedef struct {
	data obj[200001];
	int size;
} min_heap;

void push(min_heap* h, data x)
{
	int i = ++(h->size), j = i >> 1;
	data tmp;
	h->obj[i] = x;
	while (j > 0) {
		if (h->obj[i].key < h->obj[j].key) {
			tmp = h->obj[j];
			h->obj[j] = h->obj[i];
			h->obj[i] = tmp;
			i = j;
			j >>= 1;
		} else break;
	}
}

data pop(min_heap* h)
{
	int i = 1, j = 2;
	data output = h->obj[1], tmp;
	h->obj[1] = h->obj[(h->size)--];
	while (j <= h->size) {
		if (j < h->size && h->obj[j^1].key < h->obj[j].key) j ^= 1;
		if (h->obj[j].key < h->obj[i].key) {
			tmp = h->obj[j];
			h->obj[j] = h->obj[i];
			h->obj[i] = tmp;
			i = j;
			j <<= 1;
		} else break;
	}
	return output;
}

int main()
{
	int i, N, C[200001], X[200001], Y[200001];
	scanf("%d", &N);
	for (i = 1; i <= N; i++) scanf("%d %d %d", &(C[i]), &(X[i]), &(Y[i]));
	
	long long ans = 0;
	min_heap h, hh;
	data d;
	h.size = 0;
	hh.size = 0;
	for (i = 1; i <= N; i++) {
		if (X[i] < Y[i]) {
			d.key = C[i];
			d.id = i;
			push(&h, d);
		}
	}
	for (i = 0; i <= N; i++) {
		while (h.size > 0 && h.obj[1].key == i) {
			d = pop(&h);
			d.key = Y[d.id] - X[d.id];
			push(&hh, d);
		}
		while (hh.size > i) {
			d = pop(&hh);
			ans += X[d.id];
		}
	}
	while (hh.size > 0) {
		d = pop(&hh);
		ans += Y[d.id];
	}
	
	for (i = 1; i <= N; i++) if (X[i] == Y[i]) ans += X[i];
	
	for (i = 1; i <= N; i++) {
		if (X[i] > Y[i]) {
			d.key = N - C[i];
			d.id = i;
			push(&h, d);
		}
	}
	for (i = 0; i <= N; i++) {
		while (h.size > 0 && h.obj[1].key == i) {
			d = pop(&h);
			d.key = X[d.id] - Y[d.id];
			push(&hh, d);
		}
		while (hh.size > i) {
			d = pop(&hh);
			ans += Y[d.id];
		}
	}
	while (hh.size > 0) {
		d = pop(&hh);
		ans += X[d.id];
	}
	printf("%lld\n", ans);
	fflush(stdout);
	return 0;
}
0