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。分三种情况:
- tf>kf 此时选择tf与kf打是最优的。因为tf反正都要赢,最好去赢对方最快的
- tf<kf 此时选择ts与kf的是最优的。因为kf反正都要赢,就让我方最慢的消耗掉它
- tf=kf
- ts>ks 此时选择ts与ks打。因为ks反正要输,让我方最慢的和它打为最优选择
- ts<ks 此时选择ts与kf打。因为ts反正都要输,不如输给对方最快的
- ts=ks
- ts<kf 用ts与kf打,消耗对方最快的。
- ts=kf 游戏结束 game over
ts>kf不可能情况
在做题过程中出现了一个插曲,我写的代码怎么也过不了。我在一个博客中找到的代码和我思路差不多(比较最慢的)
用他的代码一边就A了。真是见了鬼了
下面贴出两个代码
AC代码
#include<stdio.h>
#include<algorithm>
using namespace std;
int main(){
int n, i, j;
int a[1000];
int b[1000];
while(scanf("%d", &n) && n){
for(i = 0; i < n; ++i){
scanf("%d", &a[i]);
}
for(i = 0; i < n; ++i){
scanf("%d", &b[i]);
}
sort(a, a + n);
sort(b, b + n);
int c = 0, d = 0, a = n - 1, b = n - 1, ans = 0;
for(i = 0; i < n; ++i){
if(a[c] > b[d]){
++c;
++d;
++ans;
}else if(a[c] < b[d]){
++c;
--b;
--ans;
}else if(a[a] > b[b]){
--a;
--b;
++ans;
}else if(a[a] < b[b]){
++c;
--b;
--ans;
}else if(a[c] < b[b]){
++c;
--b;
--ans;
}else{
break;
}
}
printf("%d\n", ans * 200);
}
return 0;
}
我的代码
#include<iostream>
#include<algorithm>
using namespace std;
bool cmp(int &e, int &f)
{
return e > f;
}
int main()
{
//freopen("date.in", "r", stdin);
//freopen("date.out", "w", stdout);
int *a ,*b,*c, *d;//a c为田最大最小,b,d为王最大最小
int t[1000], w[1000];
int jie=0,N;
while (cin>>N&&N)
{
jie = 0;
for (int i = 0; i < N; i++)
cin >> t[i];
for (int i = 0; i < N; i++)
cin >> w[i];
sort(t, t + N,cmp);
sort(w, w + N,cmp);
a = t;
c = t+N-1;
b= w;
d= w+N - 1;
for (int i = 0; i<N;i++)
{
if (*a > *b)
{
jie++;
a++;
b++;
}
else
{
if (*a < *b)
{
jie--;
c--;
b++;
}
else
if (*c < *d)
{
jie--;
c--;
b++;
}
else
if (*c > *d)
{
jie++;
c--;
d--;
}
else
if (*c < *b)
{
jie--;
c--;
b++;
}
else
{
jie = 0;
goto shan;
}
}
}
shan:cout << jie * 200 << endl;
}
}
真是见鬼了,这两段代码耗费了我一个星期六。。
先贴在这里,过两天再研究,先往下刷题吧!
SDAU课程练习--problemC的更多相关文章
- SDAU课程练习--problemQ(1016)
题目描述 FJ is surveying his herd to find the most average cow. He wants to know how much milk this 'med ...
- SDAU课程练习--problemG(1006)
题目描述 Problem Description The highest building in our city has only one elevator. A request list is m ...
- SDAU课程练习--problemO(1014)
题目描述 Before bridges were common, ferries were used to transport cars across rivers. River ferries, u ...
- SDAU课程练习--problemB(1001)
题目描述 There is a pile of n wooden sticks. The length and weight of each stick are known in advance. T ...
- SDAU课程练习--problemA(1000)
题目描述 The famous ACM (Advanced Computer Maker) Company has rented a floor of a building whose shape i ...
- SDAU课程练习--problemE
problemE 题目描述 "今年暑假不AC?" "是的." "那你干什么呢?" "看世界杯呀,笨蛋!" "@ ...
- .NET 提升教育 第一期:VIP 付费课程培训通知!
为响应 @当年在远方 同学的建议,在年前尝试进行一次付费的VIP培训. 培训的课件:点击下载培训周期:10个课程左右,每晚1个半小时培训价格:1000元/人.报名方式:有意向的请加QQ群:路过秋天.N ...
- 14门Linux课程,打通你Linux的任督二脉!
Linux有很多优点:安全.自主.开源--,也正是这些优点使得很多人都在学Linux. 虽说网上有大把的Linux课程资源,但是对很多小白来说网上的课程资源比较零散并不适合新手学习. 正因为此,总结了 ...
- 在线课程笔记—.NET基础
关于学习北京理工大学金旭亮老师在线课程的笔记. 介绍: 在线课程网址:http://mooc.study.163.com/university/BIT#/c 老师个人网站:http://jinxuli ...
随机推荐
- simHash 简介以及java实现
http://gemantic.iteye.com/blog/1701101 simHash 简介以及java实现 博客分类: 算法 simHash java 去重 传统的hash 算法只负责将原始 ...
- Linq第三讲
LINQ 1.查询操作符 (1)源起 .net的设计者在IEnumerable<T>等接口基础之上定义了一系列的扩展方法来方便用户操作集合对象,这些扩展方法构成了LINQ的查询操作符 (2 ...
- 第4章 流程控制----编写Java程序,使用while循环语句计算1+1/2!+1/3!+...+1/20!之和
package four; public class fouronetwo { public static void main(String args[]){ double sum = 0,a = 1 ...
- 第一天学习oc用xcode做的一个加减乘除 圆的面积计算
#import <Foundation/Foundation.h> //这是oc的框架 @interface jisuan : NSObject //申明一个jisuan这样的类 并继 ...
- ASP.NET多文件批量打包下载
在对多文件打包中用到了 DotNetZip 的方法来实现对多文件压缩打包.需要到http://dotnetzip.codeplex.com/处下载该文件,然后引用即可. Default.aspx: & ...
- ECShop - 数据库操作类
ECShop v2.7.2没有使用一些开源的数据库操作类,比如adodb或者PEAR,而是封装了自己的实现.这样做的好处是实现非常轻量,只有一个文件,27Kb,大大减小了分发包的文件大小.另外,当网站 ...
- cornerstone 怎么使用
Cornerstone的逻辑很清晰,界面打开后,左边栏上下分开,上面是working copies的列表,下面是REPOSITORIES的列表.常见的功能基本上跟windows一样,在上下文中可以得到 ...
- Windows环境下google protobuf入门
我使用的是最新版本的protobuf(protobuf-2.6.1),编程工具使用VS2010.简单介绍下google protobuf: google protobuf 主要用于通讯,是google ...
- FTP 服务器
先使用mstsc检验网络连通性\\192.168.196.177\OraCDuser:domai\userpassword: 1234UAT 和prod 网络隔绝
- initWithFrame、initWithCoder、awakeFromNib的区别和调用次序 & UIViewController生命周期 查缺补漏
当我们创建或者自定义一个UI控件时,就很可能会调用awakeFromNib.initWithCoder .initWithFrame这些方法.三者的具体区别如下: initWithFrame: 通过代 ...