POJ--2463(物理题)-- 动能定理,弹性势能,重力势能

在本篇博文中,我们探讨了一个经典的物理学问题,詹姆斯·邦德如何利用蹦极绳从一座高桥逃生。通过计算绳子的长度、强度、重力加速度以及邦德的体重,我们分析了三种可能的逃生场景:无法触地、高速撞击地面或成功逃生。博文详细解释了物理原理,并提供了一段C++代码实现,用于判断邦德的最终命运。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

题目:http://poj.org/problem?id=2463

 

 

Once again, James Bond is fleeing from some evil people who want to see him dead. Fortunately, he has left a bungee rope on a nearby highway bridge which he can use to escape from his enemies. His plan is to attach one end of the rope to the bridge, the other end of the rope to his body and jump off the bridge. At the moment he reaches the ground, he will cut the rope, jump into his car and be gone. 

Unfortunately, he had not had enough time to calculate whether the bungee rope has the right length, so it is not clear at all what is going to happen when he jumps off the bridge. There are three possible scenarios: 

  • The rope is too short (or too strong), and James Bond will never reach the ground. 
  • The rope is too long (or too weak), and James Bond will be going too fast when he touches the ground. Even for a
  • special agent, this can be very dangerous. You may assume that if he collides at a speed of more than 10 m/s, he will not survive the impact.


The rope's length and strength are good. James Bond touches the ground at a comfortable speed and can escape. 
As his employer, you would like to know whether James Bond survives or whether you should place a job ad for the soon-to-be vacant position in the local newspaper. Your physicists claim that: 

  • The force with which James is pulled towards the earth is 
    9.81 * w, 
    where w is his weight in kilograms and 9.81 is the Earth acceleration in meters over squared seconds. 
  • Mr. Bond falls freely until the rope tautens. Then the force with which the bungee rope pulls him back into the sky depends on the current length of the rope and is 
    k * Δl, 
    where Δl is the difference between the rope's current length and its nominal, unexpanded length, and k is a rope-specific constant.


Given the rope's strength k, the nominal length of the rope l in meters, the height of the bridge s in meters, and James Bond's body weight w, you have to determine what is going to happen to our hero. For all your calculations, you may assume that James Bond is a point at the end of the rope and the rope has no mass. You may further assume that k, l, s, and w are non-negative and that s < 200.

Input

The input contains several test cases, one test case per line. Each test case consists of four floating-point numbers (k, l, s, and w) that describe the situation.

Output

Depending on what is going to happen, your program must print "Stuck in the air.", "Killed by the impact.", or "James Bond survives.". Input is terminated by a line containing four 0s, this line should not be processed.

Sample Input

350 20 30 75
375 20 30 75
400 20 30 75
425 20 30 75
450 20 30 75
400 20 30 50
400 20 30 80
400 20 30 85
0 0 0 0

Sample Output

Killed by the impact.
James Bond survives. 
James Bond survives. 
James Bond survives. 
Stuck in the air.
Stuck in the air.
James Bond survives. 
Killed by the impact.

题意
一个人逃跑要从天桥上跳下去。他有一根绳子。已知绳子长度,劲度系数,天桥高度,人的重量,重力加速度,问你这个人跳下去会是什么情况。

如果不能着地则输出”Stuck in the air.” 
如果他着地时的速度大于10m/s,他死了输出”Killed by the impact.” 
否则他获救了输出”James Bond survives.”
 

题解:

如果绳子长度大于高度,就直接算速度和限制的速度比较,

如果小于,就需要用动能公式;mgh - 1/2 k (\Delta x) ^{2} = 1/2 m v ^{2}

如果等号左边小于0

将会”Stuck in the air.” 

然后计算速度,和限制速度比较。

#include <iostream>
#include <math.h>
#include <stdio.h>

using namespace std;

int main()
{
    double k,l,s,w;
    while(~scanf("%lf%lf%lf%lf",&k,&l,&s,&w) && (k + l + s + w))
    {
        double v;
        if(l >= s)
        {
            v = 2 * 9.81 * s;
            if(v <= 100)
                cout << "James Bond survives." << endl;
            else cout << "Killed by the impact." << endl;
        }
        else
        {
            double tmp = w * 9.81 * s - 0.5 * k * (s - l) * (s - l);
            if(tmp < 0)
                {
                    cout << "Stuck in the air." << endl;
                }
            else
               {
                   v = tmp * 2 / w;
                   if(v > 100)
                    cout << "Killed by the impact." << endl;
                    else cout << "James Bond survives." << endl;
               }
        }
    }
    return 0;
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值