SDAU课程练习--problemC

题目描述

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.

Input

The input consists of up to 50 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. The input ends with a line that has a single 0 after the last test case.

Output

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

Sample Input

3
92 83 71
95 87 74
2
20 20
20 20
2
20 19
22 18
0

Sample Output

200
0
0

题目大意

田忌与king赛马,在赛马过程中使用贪心。

思路

将总的问题分解为一个个小问题,每个小问题都选择最佳,最佳的选择一定是从田忌的最快最慢与king的最快最慢中选择对决马匹。分别记为tf,ts,kf,ks。分三种情况:

  1. tf>kf 此时选择tf与kf打是最优的。因为tf反正都要赢,最好去赢对方最快的
  2. tf<kf 此时选择ts与kf的是最优的。因为kf反正都要赢,就让我方最慢的消耗掉它
  3. tf=kf
    1. ts>ks 此时选择ts与ks打。因为ks反正要输,让我方最慢的和它打为最优选择
    2. ts<ks 此时选择ts与kf打。因为ts反正都要输,不如输给对方最快的
    3. ts=ks
      1. ts<kf 用ts与kf打,消耗对方最快的。
      2. ts=kf 游戏结束 game over
      3. ts>kf 不可能情况

在做题过程中出现了一个插曲,我写的代码怎么也过不了。我在一个博客中找到的代码和我思路差不多(比较最慢的)

用他的代码一边就A了。真是见了鬼了

下面贴出两个代码

AC代码

  1. #include<stdio.h>
  2. #include<algorithm>
  3. using namespace std;
  4. int main(){
  5. int n, i, j;
  6. int a[1000];
  7. int b[1000];
  8. while(scanf("%d", &n) && n){
  9. for(i = 0; i < n; ++i){
  10. scanf("%d", &a[i]);
  11. }
  12. for(i = 0; i < n; ++i){
  13. scanf("%d", &b[i]);
  14. }
  15. sort(a, a + n);
  16. sort(b, b + n);
  17. int c = 0, d = 0, a = n - 1, b = n - 1, ans = 0;
  18. for(i = 0; i < n; ++i){
  19. if(a[c] > b[d]){
  20. ++c;
  21. ++d;
  22. ++ans;
  23. }else if(a[c] < b[d]){
  24. ++c;
  25. --b;
  26. --ans;
  27. }else if(a[a] > b[b]){
  28. --a;
  29. --b;
  30. ++ans;
  31. }else if(a[a] < b[b]){
  32. ++c;
  33. --b;
  34. --ans;
  35. }else if(a[c] < b[b]){
  36. ++c;
  37. --b;
  38. --ans;
  39. }else{
  40. break;
  41. }
  42. }
  43. printf("%d\n", ans * 200);
  44. }
  45. return 0;
  46. }

我的代码

  1. #include<iostream>
  2. #include<algorithm>
  3. using namespace std;
  4. bool cmp(int &e, int &f)
  5. {
  6. return e > f;
  7. }
  8. int main()
  9. {
  10. //freopen("date.in", "r", stdin);
  11. //freopen("date.out", "w", stdout);
  12. int *a ,*b,*c, *d;//a c为田最大最小,b,d为王最大最小
  13. int t[1000], w[1000];
  14. int jie=0,N;
  15. while (cin>>N&&N)
  16. {
  17. jie = 0;
  18. for (int i = 0; i < N; i++)
  19. cin >> t[i];
  20. for (int i = 0; i < N; i++)
  21. cin >> w[i];
  22. sort(t, t + N,cmp);
  23. sort(w, w + N,cmp);
  24. a = t;
  25. c = t+N-1;
  26. b= w;
  27. d= w+N - 1;
  28. for (int i = 0; i<N;i++)
  29. {
  30. if (*a > *b)
  31. {
  32. jie++;
  33. a++;
  34. b++;
  35. }
  36. else
  37. {
  38. if (*a < *b)
  39. {
  40. jie--;
  41. c--;
  42. b++;
  43. }
  44. else
  45. if (*c < *d)
  46. {
  47. jie--;
  48. c--;
  49. b++;
  50. }
  51. else
  52. if (*c > *d)
  53. {
  54. jie++;
  55. c--;
  56. d--;
  57. }
  58. else
  59. if (*c < *b)
  60. {
  61. jie--;
  62. c--;
  63. b++;
  64. }
  65. else
  66. {
  67. jie = 0;
  68. goto shan;
  69. }
  70. }
  71. }
  72. shan:cout << jie * 200 << endl;
  73. }
  74. }

真是见鬼了,这两段代码耗费了我一个星期六。。

先贴在这里,过两天再研究,先往下刷题吧!

来自为知笔记(Wiz)

时间: 2024-08-26 01:57:35

SDAU课程练习--problemC的相关文章

SDAU课程练习--problemG(1006)

题目描述 Problem Description The highest building in our city has only one elevator. A request list is made up with N positive numbers. The numbers denote at which floors the elevator will stop, in specified order. It costs 6 seconds to move the elevator

SDAU课程练习--problemQ(1016)

题目描述 FJ is surveying his herd to find the most average cow. He wants to know how much milk this 'median' cow gives: half of the cows give as much or more than the median; half give as much or less. Given an odd number of cows N (1 <= N < 10,000) and

SDAU课程练习--problemE

problemE 题目描述 "今年暑假不AC?" "是的." "那你干什么呢?" "看世界杯呀,笨蛋!" "@#$%^&*%-" 确实如此,世界杯来了,球迷的节日也来了,估计很多ACMer也会抛开电脑,奔向电视了. 作 为球迷,一定想看尽量多的完整的比赛,当然,作为新时代的好青年,你一定还会看一些其它的节目,比如新闻联播(永远不要忘记关心国家大事).非常6+7. 超级女生,以及王小丫的<开心辞

SDAU课程练习--problemO(1014)

题目描述 Before bridges were common, ferries were used to transport cars across rivers. River ferries, unlike their larger cousins, run on a guide line and are powered by the river's current. Cars drive onto the ferry from one end, the ferry crosses the

[js高手之路]设计模式系列课程-组合模式+寄生组合继承实战新闻列表

所谓组合模式,就是把一堆结构分解出来,组成在一起,现实中很多这样的例子,如: 1.肯德基套餐就是一种组合模式, 比如鸡腿堡套餐,一般是是由一个鸡腿堡,一包薯条,一杯可乐等组成的 2.组装的台式机同理,由主板,电源,内存条,显卡, 机箱,显示器,外设等组成的 把一个成型的产品组成部件,分成一个个独立的部件,这种方式可以做出很多灵活的产品,这就是组合模式的优势 比如:家用台式机电脑,要求配置比较低, 这个时候只需要主板+电源+内存条+机箱+显示器+外设就可以了,不需要配置独立显卡 鸡腿堡+鸡翅+紫薯

对软件工程课程的期望

学习到的能力预期: 1.首先,尽量能学会书中大部分知识,并能掌握和运用. 2.能体会到团队协作时互帮互助的乐趣和团队合作的重要性. 3..通过项目掌握更多的编程知识,加强自己的编程能力. 4.能在项目的基础上添加一些自己的功能. 对项目课程的期望: 1.希望做的项目可以激发我对编程的乐趣. 2.最好能完美做出给的项目. 对项目的愿景规划: 1.项目可以成功完成并且得到好的评价 2.每个成员都可以有所收获 3.每个人能提高自己的编程能力 4.没争执最好,有争执更能体现出每个人的学习态度.

《对软件工程课程的期望》

实践项目完成后学习到的能力的预期: 1. 能合理运用书本上的知识,不在是理论上的知识. 2. 提升自己的水平. 3. 与队友合作,取长补短,发挥长处,弥补不足. 对项目课程的期望: 1. 不要太难 2. 快乐学习 3. 学好,学精 对项目的愿景规划: 1.开发出的安卓具有: (1)实用且对大家都有帮助 (2)让用户有好的体验,比如界面和功能 (3)好玩,并且大家都喜欢用 2)每个成员体会到自己做出的软件的价值,能够有所收获. 3)拥有解决问题的体现. 4)每个人都有自己的价值,发挥自己的长处,弥

linux课程以及Linux主要学习哪些内容

7年线下Linux课程研发教学经验,课程设计个个知识循环相扣,让学员在实战学习解决问题过程中,来掌握Linux运维这门技能,整个学习过程,实战项目贯穿整个Linux运维所需的知识点,主要阶段包括如下: 第一阶段:Linux基础Linux入门.常用的基础命令.FHS .bash常用功能.I/O重定向及管道 .用户和组.权限管理.bash环境.sudo.grep及基本正则表达式.vim编辑器.文件查找(学完此阶段可:) 第二阶段:Linux系统管理磁盘及分区.Linux文件系统.逻辑卷.RAID .

Python自动化运维课程学习--Day3

本文为参加老男孩Python自动化运维课程第三天学习内容的总结. 大致内容如下: 1.文件操作 2.字符编码转码相关操作 3.函数 0.关于本文中所有运行Python代码的环境: --操作系统:Ubuntu 16.10 (Linux 4.8.0) --Python版本:3.5.2 python2.7.12 --Python IDE: PyCharm 2016.3.2 一.文件操作: 1.文件操作流程:以只读.写(覆盖写).追加写.读写.追加读写.二进制读写等模式打开文件 ==> 得到文件句柄,并