nyist 364 田忌赛马

2024-06-15 04:32
文章标签 田忌赛马 364 nyist

本文主要是介绍nyist 364 田忌赛马,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

田忌赛马

时间限制: 3000 ms  |  内存限制: 65535 KB
难度: 3
描述
Here is a famous story in Chinese history.

"That was about 2300 years ago. General Tian Ji was a high official in the country Qi. He likes to play horse racing with the king and others."

"Both of Tian and the king have three horses in different classes, namely, regular, plus, and super. The rule is to have three rounds in a match; each of the horses must be used in one round. The winner of a single round takes two hundred silver dollars from the loser."

"Being the most powerful man in the country, the king has so nice horses that in each class his horse is better than Tian's. As a result, each time the king takes six hundred silver dollars from Tian."

"Tian Ji was not happy about that, until he met Sun Bin, one of the most famous generals in Chinese history. Using a little trick due to Sun, Tian Ji brought home two hundred silver dollars and such a grace in the next match."

"It was a rather simple trick. Using his regular class horse race against the super class from the king, they will certainly lose that round. But then his plus beat the king's regular, and his super beat the king's plus. What a simple trick. And how do you think of Tian Ji, the high ranked official in China?"

Were Tian Ji lives in nowadays, he will certainly laugh at himself. Even more, were he sitting in the ACM contest right now, he may discover that the horse racing problem can be simply viewed as finding the maximum matching in a bipartite graph. Draw Tian's horses on one side, and the king's horses on the other. Whenever one of Tian's horses can beat one from the king, we draw an edge between them, meaning we wish to establish this pair. Then, the problem of winning as many rounds as possible is just to find the maximum matching in this graph. If there are ties, the problem becomes more complicated, he needs to assign weights 0, 1, or -1 to all the possible edges, and find a maximum weighted perfect matching...

However, the horse racing problem is a very special case of bipartite matching. The graph is decided by the speed of the horses --- a vertex of higher speed always beat a vertex of lower speed. In this case, the weighted bipartite matching algorithm is a too advanced tool to deal with the problem.

In this problem, you are asked to write a program to solve this special case of matching problem.
输入
The input consists of many test cases. Each case starts with a positive integer n (n <= 1000) on the first line, which is the number of horses on each side. The next n integers on the second line are the speeds of Tian’s horses. Then the next n integers on the third line are the speeds of the king’s horses.
输出

For each input case, output a line containing a single number, which is the maximum money Tian Ji will get, in silver dollars.

For each input case, output a line containing a single number, which is the maximum money Tian Ji will get, in silver dollars.

样例输入
3
92 83 71
95 87 74
2
20 20
20 20
2
20 19
22 18
样例输出 200 0 0
题目大意: 田忌出计和齐王赛马,赛赢一场,赢200,输-200,平0; 问,田忌最多能的赢钱数。 思路: 贪心
#include <iostream>
#include <algorithm>using namespace std;#define MAXN 1001int Tianji[MAXN], Qiking[MAXN];
int n;bool cmp(int a, int b)
{return a > b;
}void solve()
{int income = 0, better = -200 * n, u = 0;sort(Tianji, Tianji + n, cmp);sort(Qiking, Qiking + n, cmp);for (int i = 0; i < n; i++){if (Qiking[i] <= Tianji[0]){u = i;break;}}for (int k = u; k < n; k++){income = -200 * k;for (int i = k, j = 0; i < n; i++, j++){if (Qiking[i] > Tianji[j]){income -= 200;}else if (Qiking[i] < Tianji[j]){income += 200;}}better = max(better, income);}cout << better << endl;
}void input()
{while (cin >> n){for (int i = 0; i < n; i++){cin >> Tianji[i];}for (int i = 0; i < n; i++){cin >> Qiking[i];}solve();}
}int main()
{std::ios::sync_with_stdio(false);input();return 0;
}



这篇关于nyist 364 田忌赛马的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1062433

相关文章

算法打卡——田忌赛马问题

问题简介:就是一个贪心的思想,下面上题目 要求示例输出输入 大体上先比较快马,田的快马与王的快马 其次比较田的慢马与王的慢马, 两处边界比较完全之后可以直接贪心了 几份示例的代码 代码一 #include <bits/stdc++.h>using namespace std;int main() {int n;int tian[2002], qi[2002];while(ci

[GESP202312 四级] 田忌赛马

题目描述 如果一个两位数是素数,且它的数字位置经过对换后仍为素数,则称为绝对素数,例如 1313。给定两个正整数 A,BA,B,请求出大于等于 AA、小于等于 BB 的所有绝对素数。 输入格式 输入 11 行,包含两个正整数 AA 和 BB。保证 10<A<B<10010<A<B<100。 输出格式 若干行,每行一个绝对素数,从小到大输出。 输入输出样例 输入 #1复制 11 20

CF #364 (Div. 2)(C. They Are Everywhere 尺取法)

题目链接 题目描述的是抓取精灵,转化一下,就是问在一个长度是n的字符串里面,你选择最短的字串,使得这个字串包涵该字符串中所有的字母至少一次。 假设我们知道区间[s,t]的不同字母个数,那么可以计算出[s+1,t1],那么t1>=t, 也就是直接尺取法搞一下就好了 #include<cstdio>#include<algorithm>#include<iostream>#include<

CF #364 (Div. 2) (B. Cells Not Under Attack 标记)

题目连接 在一个n*n的网格上,若果某个位置上放了一个棋子,那么棋子所在的行和列就算被覆盖了,每次放一个棋子问剩余的没有覆盖的点有几个 使用,两个数组分别标记行和列,在用两个变量保存X集合的可用数,Y集合的可用数,那么放入一个棋子,检查下X,Y集合就好了 #include<cstdio>#include<algorithm>#include<iostream>#include<vect

NYIST 1092 数字分隔(二)

本题是南阳理工学院ACM网站上的一道字符串处理题,很长时间不敲代码了手生得很,果然码了很长时间~ 描述 在一个遥远的国家,银行为了更快更好的处理用户的订单,决定将一整串的数字按照一定的规则分隔开来,分隔规则如下:1、实数的整数部分按照每三个数字用逗号分隔开(整数部分的高位有多余的0时,需先将多余的0过滤后,再进行数字分隔,如:0001234567 输出结果为1,234,56

【2024最新华为OD-C/D卷试题汇总】[支持在线评测] 田忌赛马 (200分) - 三语言AC题解(Python/Java/Cpp)

🍭 大家好这里是清隆学长 ,一枚热爱算法的程序员 ✨ 本系列打算持续跟新华为OD-C/D卷的三语言AC题解 💻 ACM银牌🥈| 多次AK大厂笔试 | 编程一对一辅导 👏 感谢大家的订阅➕ 和 喜欢💗 📎在线评测链接 田忌赛马(200分) 🌍 评测功能需要订阅专栏后私信联系清隆解锁~ 文章目录 📎在线评测链接🦄 田忌赛马问题描述输入格式输出格式样例输入 1样例输出

小米用田忌赛马的方式,逼得苹果降价超2000元应对,确实厉害

苹果的iPhone15降价2300多元,成为618的大热门,之前不少人士认为迫使苹果如此大幅度降价的原因是因为另一家手机企业的竞争,而日前有人士认为是小米用田忌赛马的方式,迫使苹果降价应对。 小米这次大幅度降价的手机并非是最新款的小米14,而是小米13,小米13的价格低至2700多元,比定价5999元的iPhone15便宜了3299元,一部iPhone15的定价可以买两部小米13了。 小米13

nyist -- 组队赛(二)

比赛链接:http://acm.nyist.net/JudgeOnline/problemset.php?cid=193 题解报告:http://pan.baidu.com/s/1ntwPVkd 代码: A题:http://blog.csdn.net/u014225783/article/details/23997925 B题:http://paste.ubuntu.com/7268150

【华为OD机试-C卷D卷-200分】田忌赛马(C++/Java/Python)

【华为OD机试】-(A卷+B卷+C卷+D卷)-2024真题合集目录 【华为OD机试】-(C卷+D卷)-2024最新真题目录 题目描述 给定两个只包含数字的数组a,b,调整数组 a 里面的数字的顺序,使得尽可能多的a[i] > b[i]。 数组a和b中的数字各不相同。 输出所有可以达到最优结果的a数组的结果。 输入描述 输入的第一行是数组 a 中的数字,其中只包含数字,每两个数字之

[华为OD] C卷 田忌赛马 DFS 200

题目: 给定两个只包含数字的数组a, b,调整数组a里面数字的顺序,使得尽可能多的a[i] >b[i]。 数组a和b中的数字各不相同。 输出所有可以达到最优结果的a数组的数量 输入描述 输入的第一行是数组a中的数字,其中只包含数字,每两个数字之间相隔一个空格,a数组大  小不超过10 输入的第二行是数组b中的数字,其中只包含数字,每两个数字之间相隔一个空格,b数组大  小不超过10