UVALive 6530 Football (水

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UVALive 6530 Football (水相关的知识,希望对你有一定的参考价值。

题目链接:点击打开链

#include <cstdio>
#include <vector>
#include <algorithm>
using namespace std;
typedef long long ll;
vector<int> s;
int main() {
	int n, k;
	while (~scanf("%d%d", &n, &k)) {
		s.clear();
		int sum = 0, cnt = 0;
		for(int i = 0, x, y; i < n; i ++) {
			scanf("%d%d", &x, &y);
			if(x > y) sum += 3;
			else if(x == y) {
				cnt ++;
				sum ++;
			} else s.push_back(y-x);
		}
		
		if(k >= cnt) {
			sum += 2*cnt;
			k -= cnt;
		} else {
			sum += 2*k;
			k = 0;
		}
		sort(s.begin(), s.end());
		for(int i = 0; i < s.size() && k > 0; i ++) {
			if(k > s[i]) {
				sum += 3;
				k -= s[i]+1;
			} else if(k == s[i]) {
				sum += 1;
				k -= s[i];
			}
		}
		printf("%d\n", sum);
	}
		
	return 0;
}


以上是关于UVALive 6530 Football (水的主要内容,如果未能解决你的问题,请参考以下文章

2月10日 iPhone系列最新报价

Hdu 5873 Football Games

POJ 3071 Football

C - Football

POJ3071 Football 概率dp

A. Football 水题