[BZOJ1691][Usaco2007 Dec]挑剔的美食家
Posted Elder_Giang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[BZOJ1691][Usaco2007 Dec]挑剔的美食家相关的知识,希望对你有一定的参考价值。
1691: [Usaco2007 Dec]挑剔的美食家
Time Limit: 5 Sec Memory Limit: 64 MB Submit: 880 Solved: 446 [Submit][Status][Discuss]Description
与很多奶牛一样,Farmer John那群养尊处优的奶牛们对食物越来越挑剔,随便拿堆草就能打发她们午饭的日子自然是一去不返了。现在,Farmer John不得不去牧草专供商那里购买大量美味多汁的牧草,来满足他那N(1 <= N <= 100,000)头挑剔的奶牛。 所有奶牛都对FJ提出了她对牧草的要求:第i头奶牛要求她的食物每份的价钱不低于A_i(1 <= A_i <= 1,000,000,000),并且鲜嫩程度不能低于B_i(1 <= B_i <= 1,000,000,000)。商店里供应M(1 <= M <= 100,000)种不同的牧草,第i 种牧草的定价为C_i(1 <= C_i <= 1,000,000,000),鲜嫩程度为D_i (1 <= D_i <= 1,000,000,000)。 为了显示她们的与众不同,每头奶牛都要求她的食物是独一无二的,也就是说,没有哪两头奶牛会选择同一种食物。 Farmer John想知道,为了让所有奶牛满意,他最少得在购买食物上花多少钱。
Input
* 第1行: 2个用空格隔开的整数:N 和 M
* 第2..N+1行: 第i+1行包含2个用空格隔开的整数:A_i、B_i * 第N+2..N+M+1行: 第j+N+1行包含2个用空格隔开的整数:C_i、D_i
Output
* 第1行: 输出1个整数,表示使所有奶牛满意的最小花费。如果无论如何都无法 满足所有奶牛的需求,输出-1
Sample Input
1 1
2 3
1 4
4 2
3 2
2 1
4 3
5 2
5 4
2 6
4 4
Sample Output
输出说明:
给奶牛1吃价钱为2的2号牧草,奶牛2吃价钱为4的3号牧草,奶牛3分到价钱
为2的6号牧草,奶牛4选择价钱为4的7号牧草,这种分配方案的总花费是12,为
所有方案中花费最少的。
#include <set> #include <cstdio> #include <algorithm> using namespace std; char buf[10000000], *ptr = buf - 1; inline int readint(){ int n = 0; char ch = *++ptr; while(ch < ‘0‘ || ch > ‘9‘) ch = *++ptr; while(ch <= ‘9‘ && ch >= ‘0‘){ n = (n << 1) + (n << 3) + ch - ‘0‘; ch = *++ptr; } return n; } const int maxn = 100000 + 10; struct Node{ int a, b; Node(){} Node(int _a, int _b): a(_a), b(_b){} }; class cmp1{ public: bool operator () (const Node &x, const Node &y){ return x.a < y.a; } }; class cmp2{ public: bool operator () (const Node &x, const Node &y){ return x.b < y.b; } }; Node x[maxn], y[maxn]; multiset<Node, cmp1> s; int main(){ fread(buf, sizeof(char), sizeof(buf), stdin); int n, m; n = readint(); m = readint(); if(n > m){ puts("-1"); return 0; } for(int i = 1; i <= n; i++){ x[i].a = readint(); x[i].b = readint(); } for(int i = 1; i <= m; i++){ y[i].a = readint(); y[i].b = readint(); } sort(x + 1, x + n + 1, cmp2()); sort(y + 1, y + m + 1, cmp2()); long long ans = 0; set<Node>::iterator it; for(int i = n, j = m; i; i--){ while(j && y[j].b >= x[i].b){ s.insert(y[j]); j--; } it = s.lower_bound(x[i]); if(it == s.end()){ puts("-1"); return 0; } ans += (*it).a; s.erase(it); } printf("%lld\n", ans); return 0; }
以上是关于[BZOJ1691][Usaco2007 Dec]挑剔的美食家的主要内容,如果未能解决你的问题,请参考以下文章
bzoj1691[Usaco2007 Dec]挑剔的美食家*