Submission #2703018


Source Code Expand

/*
cat <<EOF >mistaken-paste
*/

#pragma GCC diagnostic ignored "-Wincompatible-pointer-types"
#define _USE_MATH_DEFINES

#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <stdbool.h>
#include <math.h>
#include <time.h>

#define BIG 2000000007
#define VERYBIG 200000000000007LL

#define MOD 1000000007
#define FOD  998244353
typedef uint64_t ull;
typedef  int64_t sll;

#define N_MAX 300000
#define M_MAX 200000

#ifdef __cplusplus
#include <queue>
#include <stack>
// #include <tuple>
#include <set>
#include <map>

// using namespace std; // HELL
using std::queue;
using std::priority_queue;
using std::stack;
// using std::tuple;
using std::set;
using std::map;
using std::vector;
using std::greater;
using std::pair;

#endif

typedef struct {
	int32_t a;
	int32_t b;
} hw;

typedef struct {
	sll a;
	sll b;
} hwll;

typedef struct {
	sll a;
	sll b;
	sll c;
} hwllc;

typedef struct {
	hwll a;
	hwll b;
} linell;

ull n, m;
ull h, w;
ull k;
ull q;
ull vua, vub, vuc, vud, vue, vuf;
sll vsa, vsb, vsc, vsd, vse, vsf;
long double vra, vrb, vrc;
double vda, vdb, vdc;
size_t slen;
size_t tlen;
char ch, dh;

ull umin (ull x, ull y) {
	return (x < y) ? x : y;
}

ull umax (ull x, ull y) {
	return (x > y) ? x : y;
}

sll smin (sll x, sll y) {
	return (x < y) ? x : y;
}

sll smax (sll x, sll y) {
	return (x > y) ? x : y;
}

ull gcd (ull x, ull y) {
	if (x < y) {
		return gcd(y, x);
	} else if (y == 0) {
		return x;
	} else {
		return gcd(y, x % y);
	}
}

ull bitpow (ull a, ull x, ull modulo) {
	ull result = 1;
	while (x) {
		if (x & 1) {
			result *= a;
			result %= modulo;
		}
		x /= 2;
		a = (a * a) % modulo;
	}
	return result;
}

ull divide (ull a, ull b, ull modulo) {
	return (a * bitpow(b, modulo - 2, modulo)) % modulo;
}

ull udiff (ull a, ull b) {
	if (a >= b) {
		return a - b;
	} else {
		return b - a;
	}
}

sll sdiff (sll a, sll b) {
	if (a >= b) {
		return a - b;
	} else {
		return b - a;
	}
}

void printUquotient (ull left, ull right) {
	const int32_t digits = 20;

	printf("%llu.", left / right);
	left %= right;
	for (int32_t i = 0; i < digits; i++) {
		left *= 10;
		printf("%1d", left / right);
		left %= right;
	}
	puts("");

	return;
}

void printSquotient (sll left, sll right) {
	if (left * right < 0) putchar('-');
	printUquotient(sdiff(left, 0), sdiff(right, 0));

	return;
}

int bitcount (ull n) {
	int result = 0;
	while (n) {
		if (n & 1) result++;
		n /= 2;
	}
	return result;
}

#ifdef __cplusplus

bool setfind (set<ull> s, ull x) {
	return (s.find(x) != s.end());
}

#endif

// double distance (sll x1, sll y1, sll x2, sll y2) {
// 	double xdist2, ydist2, origindist, dist;

// 	xdist2 = (x1 - x2) * (x1 - x2);
// 	ydist2 = (y1 - y2) * (y1 - y2);
// 	return sqrt(xdist2 + ydist2);
// }

int32_t pullcomp (const void *left, const void *right) {
	ull l = *(ull*)left;
	ull r = *(ull*)right;
	if (l < r) {
		return -1;
	}
	if (l > r) {
		return +1;
	}
	return 0;
}

int32_t psllcomp (const void *left, const void *right) {
	sll l = *(sll*)left;
	sll r = *(sll*)right;
	if (l < r) {
		return -1;
	}
	if (l > r) {
		return +1;
	}
	return 0;
}

int32_t pcharcomp (const void *left, const void *right) {
	char l = *(char*)left;
	char r = *(char*)right;
	if (l < r) {
		return -1;
	}
	if (l > r) {
		return +1;
	}
	return 0;
}

int32_t pstrcomp (const void *left, const void *right) {
	char* l = *(char**)left;
	char* r = *(char**)right;

	return strcmp(l, r);
}

int32_t phwllABcomp (const void *left, const void *right) {
	hwll l = *(hwll*)left;
	hwll r = *(hwll*)right;
	if (l.a < r.a) {
		return -1;
	}
	if (l.a > r.a) {
		return +1;
	}
	if (l.b < r.b) {
		return -1;
	}
	if (l.b > r.b) {
		return +1;
	}
	return 0;
}

int32_t phwllREVcomp (const void *left, const void *right) {
	hwll l = *(hwll*)left;
	hwll r = *(hwll*)right;
	if (l.b < r.b) {
		return -1;
	}
	if (l.b > r.b) {
		return +1;
	}
	if (l.a < r.a) {
		return -1;
	}
	if (l.a > r.a) {
		return +1;
	}
	return 0;
}

int32_t ptriplecomp (const void *left, const void *right) {
	hwllc l = *(hwllc*)left;
	hwllc r = *(hwllc*)right;

	if (l.a < r.a) {
		return -1;
	}
	if (l.a > r.a) {
		return +1;
	}
	if (l.b < r.b) {
		return -1;
	}
	if (l.b > r.b) {
		return +1;
	}
	if (l.c < r.c) {
		return -1;
	}
	if (l.c > r.c) {
		return +1;
	}
	return 0;
}

bool isinrange (sll left, sll x, sll right) {
	return (left <= x && x <= right);
}

bool isinrange_soft (sll left, sll x, sll right) {
	return (left <= x && x <= right) || (left >= x && x >= right);
}

ull parent[N_MAX];
ull rank[N_MAX];
void uf_init (ull n) {
	for (sll i = 0; i < n; i++) {
		parent[i] = i;
		rank[i] = 0;
	}
}
ull uf_find (ull x) {
	if (parent[x] == x) return x;
	return parent[x] = uf_find(parent[x]);
}
bool uf_union (ull a, ull b) {
	a = uf_find(a);
	b = uf_find(b);
	if (a == b) return false;

	if (rank[a] > rank[b]) {
		parent[b] = a;
	} else {
		parent[a] = b;
		if (rank[a] == rank[b]) {
			rank[b]++;
		}
	}
	return true;
}


sll a[N_MAX];
// sll a[3001][3001];
sll b[N_MAX];
sll c[N_MAX];
char s[N_MAX + 1];
// char s[3010][3010];
char t[N_MAX + 1];
// hwll xy[N_MAX];

ull x, y, z;
hwllc sorted[N_MAX];

sll dp1[N_MAX];
sll dp2[N_MAX];

ull solve () {
	sll i, j, ki, li;
	// ull result = 0;
	sll result = 0;
	double dresult = 0;
	// ull maybe = 0;
	sll maybe = 0;
	// ull sum = 0;
	sll sum = 0;
	sll item;
	ull *dpcell;

	scanf("%llu%llu%llu", &x, &y, &z);
	n = x + y + z;
	for (i = 0; i < n; i++) {
		scanf("%lld%lld%lld", &a[i], &b[i], &c[i]);
	}

	for (i = 0; i < n; i++) {
		sorted[i].a = (c[i] - a[i]);
		sorted[i].b = (a[i] - b[i]);
		sorted[i].c = i;
	}
	qsort(sorted, n, sizeof(hwllc), ptriplecomp);

	// for (i = 0; i < n; i++) printf("%lld-", sorted[i].c);
	// 	puts("");

	typedef priority_queue<sll, vector<sll>, greater<sll> > Q;
	Q q;
	dp1[0] = 0;
	for (i = 1; i <= n; i++) {
		dp1[i] = dp1[i - 1];

		sll ni = sorted[i - 1].c;
		q.push(a[ni] - b[ni]);
		dp1[i] += (a[ni] - b[ni]);

		if (q.size() > x) {
			dp1[i] -= q.top();
			q.pop();
		}
		// printf("[%lld]: %lld\n", i, dp1[i]);
	}

	q = Q();
	dp2[n] = 0;
	for (i = n - 1; i >= 0; i--) {
		dp2[i] = dp2[i + 1];

		sll ni = sorted[i].c;
		q.push(c[ni] - b[ni]);
		dp2[i] += (c[ni] - b[ni]);

		if (q.size() > z) {
			dp2[i] -= q.top();
			q.pop();
		}
		// printf("[%lld]: %lld\n", i, dp2[i]);
	}

	result = dp1[x] + dp2[x];
	for (i = x; i + z <= n; i++) {
		result = smax(result, dp1[i] + dp2[i]);
		// printf("? %lld+%lld\n", dp1[i], dp2[i]);
	}
	for (i = 0; i < n; i++) {
		result += b[i];
	}

	printf("%lld\n", result);
	// printf("%.15lf\n", dresult);
	// puts(s);

	return 0;

	success:
	// puts("YES");
	// puts("Yes");
	// printf("%llu\n", result);
	// puts("0");
	// puts("First");
	return 0;

	fail:
	// puts("NO");
	// puts("No");
	// puts("0");
	// puts("-1");
	// puts("-1 -1 -1");
	// puts("Second");
	return 1;
}

int32_t main (void) {
	int32_t i, j;
	int32_t x, y;

	// scanf("%lf%lf", &vda, &vdb, &vdc);
	// scanf("%lld%lld", &vsa, &vsb, &vsc, &vsd);
	// scanf("%llu%llu%llu%llu", &vua, &vub, &vuc, &vud);
	// scanf("%*llu%*llu");
	// scanf("%llu%llu", &h, &w);
	// scanf("%llu", &n, &m);
	// scanf("%llu", &k, &n);
	// scanf("%llu%llu", &vua, &vub, &vuc, &vud, &vue, &vuf);
	// vua--;
	// vub--;
	// vuc--;
	// vud--;
	// scanf("%lld%lld", &vsa, &vsb, &vsc);
	// scanf("%s", s);
	// scanf("%s", t);
	// scanf("%llu", &k);
	// scanf("%llu", &q);
	// for (i = 0; i < n - 1; i++) {
	// 	scanf("%lld", &a[i]);
	// 	scanf("%lld", &b[i]);
	// 	// scanf("%lld%lld", &xy[i].a, &xy[i].b);
	// 	// scanf("%lld", &c[i]);
	// 	a[i]--;
	// 	b[i]--;
	// 	// c[i]--;
	// }
	// for (i = 0; i < m; i++) {
	// 	scanf("%llu", &b[i]);
	// }
	// scanf("%llu", &q);

	// for (i = 0; i < n; i++) {
	// 	for (j = 0; j < n; j++) {
	// 		scanf("%llu", &a[i][j]);
	// 	}
	// }
	// for (i = 0; i < h; i++) {
	// 	scanf("%s", &s[i]);
	// }

	// scanf("%llu", &k);
	// scanf("%llu", &q);

	solve();

	return 0;
}

Submission Info

Submission Time
Task C - Coins
User sheyasutaka
Language C++14 (GCC 5.4.1)
Score 800
Code Size 8372 Byte
Status AC
Exec Time 67 ms
Memory 17108 KB

Compile Error

./Main.cpp: In function ‘void printUquotient(ull, ull)’:
./Main.cpp:142:30: warning: format ‘%llu’ expects argument of type ‘long long unsigned int’, but argument 2 has type ‘ull {aka long unsigned int}’ [-Wformat=]
  printf("%llu.", left / right);
                              ^
./Main.cpp:146:29: warning: format ‘%d’ expects argument of type ‘int’, but argument 2 has type ‘ull {aka long unsigned int}’ [-Wformat=]
   printf("%1d", left / right);
                             ^
./Main.cpp: In function ‘ull solve()’:
./Main.cpp:354:34: warning: format ‘%llu’ expects argument of type ‘long long unsigned int*’, but argument 2 has type ‘ull* {aka long unsigned int*}’ [-Wformat=]
  scanf("%llu%llu%llu", &x, &y, &z);
                                  ^
./Main.cpp:354:34: warning: format ‘%llu’ expects argument of type ‘long long unsigned int*’, but argument 3 has type ‘ull* {aka long unsigned int*}’ [-Wformat=]
./Main.cpp:354:34: warning: format ‘%llu’ expects argument of type ‘long long unsigned int*’, but argum...

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 800 / 800
Status
AC × 3
AC × 35
Set Name Test Cases
Sample sample_01.txt, sample_02.txt, sample_03.txt
All sample_01.txt, sample_02.txt, sample_03.txt, sample_01.txt, sample_02.txt, sample_03.txt, subtask_1_01.txt, subtask_1_02.txt, subtask_1_03.txt, subtask_1_04.txt, subtask_1_05.txt, subtask_1_06.txt, subtask_1_07.txt, subtask_1_08.txt, subtask_1_09.txt, subtask_1_10.txt, subtask_1_11.txt, subtask_1_12.txt, subtask_1_13.txt, subtask_1_14.txt, subtask_1_15.txt, subtask_1_16.txt, subtask_1_17.txt, subtask_1_18.txt, subtask_1_19.txt, subtask_1_20.txt, subtask_1_21.txt, subtask_1_22.txt, subtask_1_23.txt, subtask_1_24.txt, subtask_1_25.txt, subtask_1_26.txt, subtask_1_27.txt, subtask_1_28.txt, subtask_1_29.txt
Case Name Status Exec Time Memory
sample_01.txt AC 3 ms 12544 KB
sample_02.txt AC 3 ms 12544 KB
sample_03.txt AC 3 ms 12544 KB
subtask_1_01.txt AC 3 ms 12544 KB
subtask_1_02.txt AC 13 ms 12908 KB
subtask_1_03.txt AC 16 ms 13196 KB
subtask_1_04.txt AC 35 ms 13364 KB
subtask_1_05.txt AC 39 ms 13436 KB
subtask_1_06.txt AC 52 ms 15584 KB
subtask_1_07.txt AC 15 ms 12896 KB
subtask_1_08.txt AC 49 ms 16212 KB
subtask_1_09.txt AC 15 ms 12956 KB
subtask_1_10.txt AC 46 ms 15660 KB
subtask_1_11.txt AC 65 ms 16980 KB
subtask_1_12.txt AC 46 ms 16360 KB
subtask_1_13.txt AC 64 ms 17108 KB
subtask_1_14.txt AC 65 ms 16340 KB
subtask_1_15.txt AC 66 ms 16084 KB
subtask_1_16.txt AC 59 ms 15828 KB
subtask_1_17.txt AC 61 ms 16340 KB
subtask_1_18.txt AC 62 ms 16340 KB
subtask_1_19.txt AC 61 ms 16212 KB
subtask_1_20.txt AC 65 ms 15828 KB
subtask_1_21.txt AC 46 ms 16232 KB
subtask_1_22.txt AC 65 ms 16212 KB
subtask_1_23.txt AC 65 ms 16340 KB
subtask_1_24.txt AC 67 ms 16084 KB
subtask_1_25.txt AC 57 ms 15444 KB
subtask_1_26.txt AC 61 ms 16980 KB
subtask_1_27.txt AC 62 ms 16340 KB
subtask_1_28.txt AC 61 ms 16212 KB
subtask_1_29.txt AC 3 ms 12544 KB