zoukankan      html  css  js  c++  java
  • [ZJU 1003] Crashing Balloon

    ZOJ Problem Set - 1003
    Crashing Balloon

    Time Limit: 2 Seconds      Memory Limit: 65536 KB

    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 hisher score, the product of the numbers on the balloons heshe'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 hisher opponent's score.  The player with the lower score is presumed to have told the truth, because if heshe were to lie about hisher score, heshe 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 heshe 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.

    Input

    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
    

    Source: Zhejiang University Local Contest 2001


    Solution:

      注意:先判断每个数是否合法,在进行搜索。搜索注意判重。


    #include<bits/stdc++.h>
    using namespace std;
    int a,b;
    int t[110];
    int check_DFS(int x,int lst)
    {
        if (x == 1)
        return 1;
        int ret = 0;
        for (int i=lst;i<=100;i++)
        {
        if (!t[i])
        {
            if (x % i == 0)
            ret = check_DFS(x/i,i+1);
            if (ret == 1) return 1;
        }
        }
        return 0;
    }
    int check(int num)
    {
        return check_DFS(num,2);
    }
    int DFS(int x,int lst)
    {
        for (int i=lst;i<=100 && i*i <= x;i++)
        if (x % i == 0) // Can divide
        {
            t[i] = 1;
            if (DFS(x/i,i+1)) return 1;
            t[i] = 0;
        }
        if (x <= 100)
        {
        if (t[x] == 0)
        {
            t[x] = 1;
            if (check(b)){
            return 1;   
            }        
            t[x] = 0;
        }
        }
        return 0;
    }
    void solve()
    {
        memset(t,0,sizeof(t));
        if (a < b) swap(a,b);
        int state_a = check(a);
        int state_b = check(b);
        if (state_a == 0 && state_b == 0)
        cout << a << endl;
        else
        if (state_b == 0)
            cout << a << endl;
        else
                if (DFS(a,2))
            cout << a << endl;
            else
            cout << b << endl;
        
    }
    int main()
    {
        while (cin >> a >> b)
        solve();
    }
  • 相关阅读:
    C#中Invoke的用法(转)
    C#中Thread.IsBackground 属性
    127.0.0.1是什么地址?
    C# Socket服务器端如何判断客户端断开求解
    C#中线程间操作无效: 从不是创建控件 txtBOX 的线程访问它。
    C#多线程学习之如何操纵一个线程
    利用TCP协议,实现基于Socket的小聊天程序(初级版)
    进程与线程的一个简单解释
    javascript修改css样式表
    html根据下拉框选中的值修改背景颜色
  • 原文地址:https://www.cnblogs.com/dgklr/p/9707348.html
Copyright © 2011-2022 走看看