简单题 —— Crossing Rivers —— 2009 Asia Wuhan Regional Contest Hosted by Wuhan University

解决从A地到B地穿越随机位置的船只所在的多条河流的问题,通过计算期望过河时间来规划最优路径。

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=3232

Crossing Rivers

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 429    Accepted Submission(s): 225


Problem Description
You live in a village but work in another village. You decided to follow the straight path between your house (A) and the working place (B), but there are several rivers you need to cross. Assume B is to the right of A, and all the rivers lie between them.

Fortunately, there is one "automatic" boat moving smoothly in each river. When you arrive the left bank of a river, just wait for the boat, then go with it. You're so slim that carrying you does not change the speed of any boat.

Days and days after, you came up with the following question: assume each boat is independently placed at random at time 0, what is the  expected time to reach B from A? Your walking speed is always 1.

To be more precise, for a river of length L, the distance of the boat (which could be regarded as a mathematical point) to the left bank at time 0 is  uniformly chosenfrom interval [0,  L], and the boat is equally like to be moving left or right, if it’s not precisely at the river bank.
 

Input
There will be at most 10 test cases. Each case begins with two integers  n and  D, where  n (0 <=  n <= 10) is the number of rivers between A and B,  D (1 <=  D <= 1000) is the distance from A to B. Each of the following  n lines describes a river with 3 integers:  p, L and  v (0 <=  p <  D, 0 <  L <=  D, 1 <=  v <= 100).  p is the distance from A to the left bank of this river,  L is the length of this river,  v is the speed of the boat on this river. It is guaranteed that rivers lie between A and B, and they don’t overlap. The last test case is followed by  n=D=0, which should not be processed.
 

Output
For each test case, print the case number and the expected time, rounded to 3 digits after the decimal point.

Print a blank line after the output of each test case.
 

Sample Input
  
1 1 0 1 2 0 1 0 0
 

Sample Output
  
Case 1: 1.000 Case 2: 1.000
 

Source
 

Recommend
chenrui

 ————————————————————————————————————————————————————————————————


          题目大意:说从A(左边)到B(右边),之间有些河流,每条河流有一条船。告诉你A、B之间的距离,河流的数量,河流距离A的距离,河流的宽度,船在这条河中的速度。然后是每条河中的船不一定在初始状态时就在河边,而是随机的在河中央,或在河的对面。但这都不影响。因为第一个样例等于已经告诉你概率的计算公式了。


       做这题的唯一不明白的地方,为什么ans(即输出的总时间)用float会wrong,而用double才AC,可能和精度有关吧,但只要求小数点后3位啊。不懂。


#include <algorithm>
#include <iostream>
#include <iomanip>
#include <string>
#include <bitset>

#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cmath>
#include <ctime>

#include <map>
#include <stack>
#include <queue>
#include <set>
#include <list>

#include <utility>

using namespace std;


struct boat
{
    int p, l, v;
    bool operator < (const struct boat bb)const
    {
        return this -> p - bb.p;
    }
  //  bool operator > (const struct boat bb)const
  //  {
 //       return this -> p - bb.p;
 //   }
};

struct boat b[500];


int cmp(const void *x, const void *y)
{
    return ((struct boat*)x) -> p - ((struct boat*)y) -> p;
}

int main()
{
//	srand(time(NULL));
    int n, d, lct,ca;
    double ans;
    ca = 1;
    scanf("%d %d", &n ,&d);
    while (  n != 0 || d != 0)
    {
        ans = 0.000000;
        for (int j = 0; j < n; j++)
        {
            cin >> b[j].p >> b[j].l >> b[j].v;
        }
        qsort(b, n, sizeof (struct boat), cmp);
       // sort(b, b + n);
        lct = 0;
        for (int j= 0; j < n; j++)
        {
            ans = ans + (b[j].p - lct);
            lct = b[j].p + b[j].l;
            ans += (float)(b[j].l * 2 + 0.0000) /(float)(0.0000+  b[j].v);

        }
        ans = ans + d - lct;
        printf("Case %d: %.3f\n\n",ca++, ans);
        scanf("%d %d", &n ,&d);
    }

	return 0;
}
















Delphi 12.3 作为一款面向 Windows 平台的集成开发环境,由 Embarcadero Technologies 负责其持续演进。该环境以 Object Pascal 语言为核心,并依托 Visual Component Library(VCL)框架,广泛应用于各类桌面软件、数据库系统及企业级解决方案的开发。在此生态中,Excel4Delphi 作为一个重要的社区开源项目,致力于搭建 Delphi 与 Microsoft Excel 之间的高效桥梁,使开发者能够在自研程序中直接调用 Excel 的文档处理、工作表管理、单元格操作及宏执行等功能。 该项目以库文件与组件包的形式提供,开发者将其集成至 Delphi 工程后,即可通过封装良好的接口实现对 Excel 的编程控制。具体功能涵盖创建与编辑工作簿、格式化单元格、批量导入导出数据,乃至执行内置公式与宏指令等高级操作。这一机制显著降低了在财务分析、报表自动生成、数据整理等场景中实现 Excel 功能集成的技术门槛,使开发者无需深入掌握 COM 编程或 Excel 底层 API 即可完成复杂任务。 使用 Excel4Delphi 需具备基础的 Delphi 编程知识,并对 Excel 对象模型有一定理解。实践中需注意不同 Excel 版本间的兼容性,并严格遵循项目文档进行环境配置与依赖部署。此外,操作过程中应遵循文件访问的最佳实践,例如确保目标文件未被独占锁定,并实施完整的异常处理机制,以防数据损毁或程序意外中断。 该项目的持续维护依赖于 Delphi 开发者社区的集体贡献,通过定期更新以适配新版开发环境与 Office 套件,并修复已发现的问。对于需要深度融合 Excel 功能的 Delphi 应用而言,Excel4Delphi 提供了经过充分测试的可靠代码基础,使开发团队能更专注于业务逻辑与用户体验的优化,从而提升整体开发效率与软件质量。 资源来源于网络分享,仅用于学习交流使用,请勿用于商业,如有侵权请联系我删除!
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值