赞
踩
题面:
有
题解:
拿一件物品的收益是自己拿了物品的收益加上对方没拿到的收益,那么一件物品的实际价值就是两个人估价的和了,如果上层物品价值比下面的高两个人肯定都要抢,就把上下物品都丢到数组sort一下,如果上面物品价值比下面小,谁拿上面谁倒霉,而且倒霉的肯定是先手,因为先手只要一拿上面的后手拿对应下面的肯定对后手最优,那么这些堆一定是先手取上面,后手取下面。
#include<bits/stdc++.h>
const int N = 2e4 + 10;
template <typename T> void read(T &x) {
x = 0; T f = 1; char c = getchar();
for (; !isdigit(c); c = getchar()) if (c == '-') f *= -1;
for (; isdigit(c); c = getchar()) x = x * 10 + c - '0';
x *= f;
}
struct rec{int a, b;} a[N * 2];
bool cmp(const rec &a, const rec &b) {return a.a + a.b > b.a + b.b;};
int n, a1, b1, a2, b2, cnt;
long long ans;
int main() {
freopen("love.in", "r", stdin);
freopen("love.out", "w", stdout);
read(n);
for (int i = 1; i <= n; i++) {
read(a1), read(b1), read(a2), read(b2);
if (a1 + b1 > a2 + b2)
a[++cnt] = (rec) {a1, b1},
a[++cnt] = (rec) {a2, b2};
else
ans += a1 - b2;
}
std::sort(a + 1, a + cnt + 1, cmp);
for (int i = 1; i <= cnt; i += 2)
ans += a[i].a - a[i + 1].b;
printf("%lld\n", ans);
return 0;
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。