题目概述:Crashing Balloon

  On every  June 1st, the Children's Day, there will be a game named "crashing balloon" on  TV.   The rule is very simple.  On the ground there are 100 labeled balloons,  with the numbers 1 to 100. After the referee shouts "Let's go!" the two  players, who each starts with a score of  "1", race to crash the balloons by  their feet and, at the same time, multiply their scores by the numbers written  on the balloons they crash.  After a minute, the little audiences are allowed to  take the remaining balloons away, and each contestant reports his\her score, the  product of the numbers on the balloons he\she's crashed.  The unofficial winner  is the player who announced the highest score.

  Inevitably,  though, disputes arise, and so the official winner is not determined until the  disputes are resolved.  The player who claims the lower score is entitled to  challenge his\her opponent's score.  The player with the lower score is presumed  to have told the truth, because if he\she were to lie about his\her score,  he\she would surely come up with a bigger better lie.  The challenge is upheld  if the player with the higher score has a score that cannot be achieved with  balloons not crashed by the challenging player.  So, if the challenge is  successful, the player claiming the lower score wins.

  So, for  example, if one player claims 343 points and the other claims 49, then clearly  the first player is lying; the only way to score 343 is by crashing balloons  labeled 7 and 49, and the only way to score 49 is by crashing a balloon labeled  49.  Since each of two scores requires crashing the balloon labeled 49, the one  claiming 343 points is presumed to be lying.

  On the  other hand, if one player claims 162 points and the other claims 81, it is  possible for both to be telling the truth (e.g. one crashes balloons 2, 3 and  27, while the other crashes balloon 81), so the challenge would not be  upheld.

  By the  way, if the challenger made a mistake on calculating his/her score, then the  challenge would not be upheld. For example, if one player claims 10001 points  and the other claims 10003, then clearly none of them are telling the truth. In  this case, the challenge would not be upheld.

  Unfortunately,  anyone who is willing to referee a game of crashing balloon is likely to get  over-excited in the hot atmosphere that he\she could not reasonably be expected  to perform the intricate calculations that refereeing requires.  Hence the need  for you, sober programmer, to provide a software solution.

Pairs of  unequal, positive numbers, with each pair on a single line, that are claimed  scores from a game of crashing balloon.

Output

  Numbers,  one to a line, that are the winning scores, assuming that the player with the  lower score always challenges the outcome.

Sample  Input

343 49

3599 610

62 36

Sample  Output

49

610

62


简单描述

  这也是一个很有意思的题,不认真读题,可能还不太明白.我来简单翻译一下

有一个游戏,规则是这样,有一堆气球100个,标号1->100,有两个人参与.一但开始,两个人就疯狂的踩气球,时间到就结束了(也许就10s),把他们各自踩破的球上的编号乘起来,分别是M,N,那么排名自然揭晓了

  可是分数低的人不服气,想申诉.现在问题来了,怎么申诉呢?因为每个标号的球只有一个,所以加入B踩破的话,A就没办法踩了,申诉想要产生的矛盾就在这儿.现在假如分数是 343 49 ,343可以是踩了 7和49,49只能是踩49,他们两都同时必须要踩这个49,那么就产生矛盾了.所以49赢了.还有要是有人的分数,不能由1->100的数的成绩的出,算说假话,如果两个人都说假话,还是分高的赢.


题目分析

  有三种情况:

  (1)A,B没有矛盾,那么A赢

  (2)A,B怎么都会有矛盾,而且B说的是真话,那么B赢

  (3)A,B怎么都会有矛盾,而且B说的是假话,那么A赢


解题算法

  下面的源代码中,我对主要的代码都作了详细的注释,如题

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#include < stdio.h>
int flagA,flagB;
int result ;
void dfs(int m,int n,int kk)    //运用了深度优先 的搜索策略
{
    int k =kk;
    if(m==1 && n==1)    //在两个数的所有各不相同的因子中,有因子能重新乘出给出的两个数,则A说了真话
    {
       flagA=1; //A说了真话
       return ;
    }
    if(n==1) //在两个数的所有各不相同的因子中,没有任何因子能重新乘出给出的两个数,则B说了真话
        flagB =1;   //B说了真话
    while( (k <  m || k <  n) && (k< 100) )
    {
       k++;
       /*
       *依次找出两个数所有各不相同的因子,如24和12的所有因子为 2,3,4,6,8,12 ,
        再在这些因子中搜索,看是否能重新乘出给出的两个数
       */
       if(m%k ==0)
       {
            dfs(m/k,n,k);
            if(flagA)
                return ;
       }
       if(n%k ==0 )
       {
            dfs(m,n/k,k);
            if(flagA)
                return ;
       }
    }
}
int main()
{
    int A,B,t;
    while(scanf("%d%d",&A,&B)!=EOF )
    {
        if(A <  B )  //保证A大B小
        {
            t=A;
            A=B;
            B=t;
        }
        flagA =0;   //先假定AB都说假话
        flagB =0;
        dfs(A,B,1); //判断AB矛盾        
        /*
        *要求:
        *较小者发起挑战,若较大者被证明说谎,较小者胜(较小者说真话,同时较大者说了假话);
        *若较大者可以成立,则较大者胜;
        *若较小者对自己的结果计算错误,也就是较小者不能成立,如因子中包含一个大于100的质数,则挑战不会举行,较大者胜
        */
        result =A;  
        if(flagA ==0 && flagB ==1)  //只有证明A说了假话,并且B说了真话,才算B赢
            result =B;
        printf("%d\n",result);
    }
    return 0;
}

本文转自infohacker 51CTO博客,原文链接:http://blog.51cto.com/liucw/1195118

【算法】算法之美—Crashing Balloon相关推荐

  1. 【Acm】算法之美—Crashing Balloon

    题目概述:Crashing Balloon On every  June 1st, the Children's Day, there will be a game named "crash ...

  2. 一致性哈希算法——算法解决的核心问题是当slot数发生变化时,能够尽量少的移动数据

    一致性哈希算法--算法解决的核心问题是当slot数发生变化时,能够尽量少的移动数据 参考文章: (1)一致性哈希算法--算法解决的核心问题是当slot数发生变化时,能够尽量少的移动数据 (2)http ...

  3. 【机器学习】通俗的k-近邻算法算法解析和应用

    [机器学习]通俗的k-近邻算法算法解析和应用 文章目录 1 概述 2 KNN 场景 3 KNN 原理 4 实例:改进约会网站的配对效果 5 算法总结 6 KNN算法的优缺点 7 图像分类应用 1 概述 ...

  4. ML之DT(树模型):DT(树模型算法)算法的简介、代码定义、案例应用之详细攻略

    ML之DT(树模型):DT(树模型算法)算法的简介.代码定义.案例应用之详细攻略 目录 树模型 1.A brief history of forests 2.树模型的复杂度 3.树模型的目标函数

  5. 数据结构与算法 -- 算法

    一.算法的基本概念 算法是指对解题方案准确而完整的描述,是一系列解决问题的清晰指令,算法代表着用系统的方法描述解决问题的策略机制. 算法中的指令描述的是一个计算过程,在它的作用下,系统从初始状态和初始 ...

  6. 层次聚类算法 算法_聚类算法简介

    层次聚类算法 算法 Take a look at the image below. It's a collection of bugs and creepy-crawlies of different ...

  7. 初识推荐算法---算法背景、算法概念介绍、推荐信息选取、常用推荐算法简介

    初识推荐算法 算法背景 推荐系统的基本概念 哪些信息可以用于推荐 常用的推荐系统算法 算法背景 推荐系统是根据用户的浏览习惯,确定用户的兴趣,通过发掘用户的行为,将合适的信息推荐给用户,满足用户的个性 ...

  8. ZOJ1003 Crashing Balloon【水题】

    Crashing Balloon Time Limit: 2 Seconds Memory Limit: 65536 KB On every June 1st, the Children's Day, ...

  9. 【5】数据结构与算法--- 算法 进阶

    第 4 章 算法 进阶 4.1 排序 4.1.1 排序算法简介 排序:把无序的队列变成有序的队列 排序算法:排序算法是一种将一串无规律数据依照特定顺序进行排列的一种方法或思路. 排序算法的稳定性:队列 ...

最新文章

  1. c# Selenium 如何模拟滑动geetest 验证码
  2. deque python_3 . python Collections -- Deque Object
  3. centOS 及 ubuntu 下载地址记录
  4. AVFoundation 之数字媒体(音频)
  5. 【Java】java中 ==,equals,hashcode
  6. 计算机基础函数运用,计算机应用基础第十二讲:EXCEL中函数的实际运用.doc
  7. 数据有什么特征和作用
  8. OpenCL: OpenCL快速入门教程
  9. IP寻址与子网划分网管员要知道什么
  10. ZigBee-CC2530单片机 - 实现外部电压值的测量
  11. shadowdocksc错误;端口已被占用
  12. ubuntu 下的限速软件 wondershaper 以及 命令行测试网速
  13. USACO美国信息学奥赛竞赛12月份开赛,中国学生备赛指南
  14. seo网站推广优化,网站页面的SEO优化怎么做
  15. C语言 兔子繁衍问题
  16. 程序员老王给自己的孩子取名字
  17. PageHelper 自定义总数查询方案
  18. 计算机教学在语文中应用,信息化教学在语文课堂中的应用
  19. 汇编语言(一)--绪论
  20. 参加面试除了带简历外还要带哪些去面试

热门文章

  1. java 格式化日期到毫秒_关于日期:Java – SimpleDateFormat格式化程序,以毫秒为单位返回纪元时间...
  2. jenkins使用python脚本发送企业微信通知
  3. “抢先式多任务”“协同式多任务”
  4. Android9显示模糊,app进入后台显示模糊效果
  5. 无线网能连接上但无法连接服务器是啥原因,腾达无线路由器能连接但是上不了网怎么办...
  6. 手机优酷下载视频怎么保存到手机
  7. 为何Excel表格部分选项是灰色的,无法选择?
  8. 研究方向三选一选择FPGA/计算机视觉/故障检测
  9. php每日答题,持续更新!每日答题汇总
  10. 基于约束的装配设计【CadQuery】