首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
MCP广场
社区首页 >专栏 >【HDU】1155 - Bungee Jumping(动能定理)

【HDU】1155 - Bungee Jumping(动能定理)

作者头像
FishWang
发布2025-08-27 10:31:07
发布2025-08-27 10:31:07
8300
代码可运行
举报
运行总次数:0
代码可运行

点击打开题目

Bungee Jumping

Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 1179 Accepted Submission(s): 505

Problem Description

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. 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. 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

代码语言:javascript
代码运行次数:0
运行
复制
   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

代码语言:javascript
代码运行次数:0
运行
复制
   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.

Source

University of Waterloo Local Contest 2005.06.11

设末速度为v,那么用动能定理列方程:

0 - 1/2 mv^2 = mgh - 1/2kx^2

m就是题目中的w,h是s,x就是长度的改变量(即(s - l))。

求出来的末速度v,如果大于10,那么就摔死了。

如果v^2小于0,那么说明他到不了地面。

否则就是获救了。

但是还有一点,要判断这个绳子是否有形变,即:是否 s > l

代码如下:

代码语言:javascript
代码运行次数:0
运行
复制
#include <stdio.h>
#include <cstring>
#include <algorithm>
#include <cmath>
using namespace std;
#define CLR(a,b) memset(a,b,sizeof(a))
#define INF 0x3f3f3f3f
#define LL long long
int main()
{
	double k,l,s,w;
	while (~scanf ("%lf %lf %lf %lf",&k,&l,&s,&w))
	{
		if (k == 0 && l == 0 && s == 0 && w == 0)
			break;
		double v = 2*9.81*s;
		if (l < s)
			v -= k*(s-l)*(s-l)/w;
		if (v < 0)
		{
			puts("Stuck in the air.");
			continue;
		}
		v = sqrt(v);
		if (v > 10.0)
			puts("Killed by the impact.");
		else
			puts("James Bond survives.");
	}
	return 0;
}
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2025-08-26,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • Bungee Jumping
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档