zoukankan      html  css  js  c++  java
  • 我用超白痴的方法解出了这道题,大家有没有更好的方法

    题目如下

    Dick and Jane

    Time limit: 1 Seconds   Memory limit: 32768K  
    Total Submit: 208   Accepted Submit: 92  

    Dick is 12 years old. When we say this, we mean that it is at least twelve and not yet thirteen years since Dick was born.

    Dick and Jane have three pets: Spot the dog, Puff the Cat, and Yertle the Turtle. Spot was s years old when Puff was born; Puff was p years old when Yertle was born; Spot was y years old when Yertle was born. The sum of Spot's age, Puff's age, and Yertle's age equals the sum of Dick's age (d) and Jane's age (j). How old are Spot, Puff, and Yertle?

    Each input line contains four non-negative integers: s, p, y, j. For each input line, print a line containing three integers: Spot's age, Puff's age, and Yertle's age. Ages are given in years, as described in the first paragraph.

    Sample Input

    5 5 10 9
    5 5 10 10
    5 5 11 10
    

    Output for Sample Input

    12 7 2
    13 7 2
    13 7 2
    

    Problem Source: University of Waterloo Local Contest 1998.06.06

    我用的是傻得无以复加的方法,而且差0.02s就超时了,好险!

    //http://acm.zju.edu.cn/show_problem.php?pid=1110

    #include
    <iostream>
    using namespace std;
    main()
    {
        
    const int d=12;
        
    int s,p,y,j;
        
    float sa,pa,ya;

        
    while(  scanf("%d%d%d%d",&s,&p,&y,&j)!=EOF)
        
    {
           
    for(ya=0.0;ya<=50;ya+=0.1)
            
    {
                
    for(pa=ya;pa<=ya+p+3;pa+=0.1)
                
    {
                    
    for(sa=pa;sa<=ya+y+3;sa+=0.1)
                    
    {
                        
    if ( (int(sa-pa)==s) && (int(sa-ya)==y) && (int(pa-ya)==p) && (int(sa)+int(pa)+int(ya)==d+j) )
                            
    goto finish;
                    }

                }

            }

    finish:  
            printf(
    "%.0f %.0f %.0f\n",sa,pa,ya);

        }

    }


    大家有更好的算法吗?

  • 相关阅读:
    浅谈《倒退的历史——某MIS项目手记(1):“切五花肉”式的分工 》
    使用SMO备份SQLServer2005数据库
    在.NET 2.0中,让你的组件也可以绑定
    URL 正则表达式,全【转】
    WinForm 自定义控件属性
    C# WebBrowser 中删除 HtmlElement
    C# C# WinForm控件美化扩展系列之ImageComboBox
    C# 处理无边框窗体
    【唠叨两句】Event and delegate
    与 “关闭窗体” 相关的一些零散知识
  • 原文地址:https://www.cnblogs.com/Jonlee/p/274279.html
Copyright © 2011-2022 走看看