热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

SDAU课程练习problemC

题目描述HereisafamousstoryinChinesehistory.“Thatwasabout2300yearsago.GeneralTianJiwasahighoffi

题目描述

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
  3. tf=kf
    1. ts>ks 此时选择ts与ks打。因为ks反正要输,让我方最慢的和它打为最优选择

    2. ts
    3. ts=ks
      1. ts
      2. ts=kf 游戏结束 game over

      3. ts>kf 不可能情况

在做题过程中出现了一个插曲,我写的代码怎么也过不了。我在一个博客中找到的代码和我思路差不多(比较最慢的)
用他的代码一边就A了。真是见了鬼了
下面贴出两个代码

AC代码

  1. #include
  2. #include
  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
  2. #include
  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)



推荐阅读
  • 在1995年,Simon Plouffe 发现了一种特殊的求和方法来表示某些常数。两年后,Bailey 和 Borwein 在他们的论文中发表了这一发现,这种方法被命名为 Bailey-Borwein-Plouffe (BBP) 公式。该问题要求计算圆周率 π 的第 n 个十六进制数字。 ... [详细]
  • 网络流24题——试题库问题
    题目描述:假设一个试题库中有n道试题。每道试题都标明了所属类别。同一道题可能有多个类别属性。现要从题库中抽取m道题组成试卷。并要求试卷包含指定类型的试题。试设计一个满足要求的组卷算 ... [详细]
  • 深入解析Unity3D游戏开发中的音频播放技术
    在游戏开发中,音频播放是提升玩家沉浸感的关键因素之一。本文将探讨如何在Unity3D中高效地管理和播放不同类型的游戏音频,包括背景音乐和效果音效,并介绍实现这些功能的具体步骤。 ... [详细]
  • 本文介绍了SIP(Session Initiation Protocol,会话发起协议)的基本概念、功能、消息格式及其实现机制。SIP是一种在IP网络上用于建立、管理和终止多媒体通信会话的应用层协议。 ... [详细]
  • 解决UIScrollView自动偏移问题的方法
    本文介绍了一种有效的方法来解决在使用UIScrollView时出现的自动向下偏移的问题,通过调整特定的属性设置,可以确保滚动视图正常显示。 ... [详细]
  • 如何高效渲染JSON数据
    本文介绍了在控制器中返回JSON结果的方法,并详细说明了如何利用jQuery处理和展示这些数据,为Web开发提供了实用的技巧。 ... [详细]
  • JavaScript 页面卸载事件详解 (onunload)
    当用户从页面离开时(如关闭页面或刷新页面),会触发 onunload 事件,此时可以执行预设的脚本。需要注意的是,不同的浏览器对 onunload 事件的支持程度可能有所不同。 ... [详细]
  • 默认情况下,Git 使用 Nano 编辑器进行提交信息的编辑,但如果您更喜欢使用 Vim,可以通过简单的配置更改来实现这一变化。本文将指导您如何通过修改全局配置文件来设置 Vim 作为默认的 Git 提交编辑器。 ... [详细]
  • 在Notepad++中配置Markdown语法高亮及实时预览功能
    本文详细介绍了如何在Notepad++中配置Markdown语法高亮和实时预览功能,包括必要的插件安装和设置步骤。 ... [详细]
  • 探讨如何在映射文件中处理重复的属性字段,以避免数据操作时出现错误。 ... [详细]
  • 在测试软件或进行系统维护时,有时会遇到电脑蓝屏的情况,即便使用了沙盒环境也无法完全避免。本文将详细介绍常见的蓝屏错误代码及其解决方案,帮助用户快速定位并解决问题。 ... [详细]
  • 为何Compose与Swarm之后仍有Kubernetes的诞生?
    探讨在已有Compose和Swarm的情况下,Kubernetes是如何以其独特的设计理念和技术优势脱颖而出,成为容器编排领域的领航者。 ... [详细]
  • 在尝试加载支持推送通知的iOS应用程序的Ad Hoc构建时,遇到了‘no valid aps-environment entitlement found for application’的错误提示。本文将探讨此错误的原因及多种可能的解决方案。 ... [详细]
  • 本文探讨了程序员这一职业的本质,认为他们是专注于问题解决的专业人士。文章深入分析了他们的日常工作状态、个人品质以及面对挑战时的态度,强调了编程不仅是一项技术活动,更是个人成长和精神修炼的过程。 ... [详细]
  • 2023年,Android开发前景如何?25岁还能转行吗?
    近期,关于Android开发行业的讨论在多个平台上热度不减,许多人担忧其未来发展。本文将探讨当前Android开发市场的现状、薪资水平及职业选择建议。 ... [详细]
author-avatar
ssl87
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有