首页 > 代码库 > UVALive 6530 Football (水
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 (水
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。