Poj1003------Hangover

2023-10-21 17:10
文章标签 ------ hangover poj1003

本文主要是介绍Poj1003------Hangover,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

题目

How far can you make a stack of cards overhang a table? If you have one card, you can create a maximum overhang of half a card length. (We're assuming that the cards must be perpendicular to the table.) With two cards you can make the top card overhang the bottom one by half a card length, and the bottom one overhang the table by a third of a card length, for a total maximum overhang of 1/2 + 1/3 = 5/6 card lengths. In general you can make n cards overhang by 1/2 + 1/3 + 1/4 + ... + 1/(n + 1) card lengths, where the top card overhangs the second by 1/2, the second overhangs tha third by 1/3, the third overhangs the fourth by 1/4, etc., and the bottom card overhangs the table by 1/(n + 1). This is illustrated in the figure below.

 

 

Input

The input consists of one or more test cases, followed by a line containing the number 0.00 that signals the end of the input. Each test case is a single line containing a positive floating-point number c whose value is at least 0.01 and at most 5.20; c will contain exactly three digits.

Output

For each test case, output the minimum number of cards necessary to achieve an overhang of at least c card lengths. Use the exact output format shown in the examples.

题目大意就是,我给你一个长度,作为目标长度,看需要多少张牌叠放在一起,其露出桌子的长度能够到这个目标长度。叠放的规则是,一张牌至少要保证有1/2的长度有支撑,所以为了达到最大化,最上面那张牌是露出1/2,下一张是1/3,以此类推,直到1/n,露出的部分到达长度c

问题

主要就是读题,还有就是,循环会用到一个1/i,这个i很可能随习惯就设成int类型了,按照题目的翻译,的确从1/2到1/n分母都是整型,但是!!你累加的结果s要求是浮点型,为了避免c++取整性(所有c++计算题涉及得出精确浮点结果都需要避免系统陷阱!!)所以要么把i设成double,要不写成1.0/i,

代码

#include <iostream>
using namespace std;
int main()
{double n,tmp,s=0;while(cin>>n&&n!=0){for(double i=2;;i++)//注意1除i变成整数 !!!!! {s=s+1/i;//double i  or  1.0/i if(s>=n) {cout<<i-1<<" card(s)"<<endl;s=0;break;}}}return 0;
}

 

这篇关于Poj1003------Hangover的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/255779

相关文章

安卓玩机工具------小米工具箱扩展工具 小米机型功能拓展

小米工具箱扩展版                     小米工具箱扩展版 iO_Box_Mi_Ext是由@晨钟酱开发的一款适用于小米(MIUI)、多亲(2、2Pro)、多看(多看电纸书)的多功能工具箱。该工具所有功能均可以免root实现,使用前,请打开开发者选项中的“USB调试”  功能特点 【小米工具箱】 1:冻结MIUI全家桶,隐藏状态栏图标,修改下拉通知栏图块数量;冻结

redis 实现单位时间内错误记录 时间到key值就被清除------最近脑子不好使觉得还是写个博客试试

直接在客户端操作的, 所以需要redis的简单命令  去对比JAVA客户端jedis的命令就行   添加---set     格式 set  key  value  EX time(秒)   如果这个time不添加的话 ,那默认就是 永久 获取--get    格式 get key  ---查看剩余时间    格式 TTL key ---实现key实现自增: inrc key

【数据结构】LinkedList ------ java实现

知识框架图:   LinkedList是一种常用的数据结构。底层是一个双向链表。每个节点包含数据以及指向前一个节点和后一个节点的引用。    一:LinkedList的使用    1.1 LinkedList的构造方法 方法 解释LinkedList() 无参构造public LinkedList(Collection<? extends E> c) 使用其他集合容器中

Linux程序设计读书笔记------入门

第一章 入门   1:什么是Unix Unix是Open Group管理的一个商标,它指的是遵循特定规范的计算机操作系统 2:什么是Linux Linux是一个可以自由发布的类Unix内核实现,他是一个操作系统的底层核心 3:Linux应用程序表现为两种特殊类型的文件:可执行文件和脚本文件 4:Linux文本编辑器:Vim,Emacs等 5:库文件   1:静态库:.a   2

NLP从零开始------文本中阶处理之序列到序列模型(完整版)

1. 序列到序列模型简介         序列到序列( sequence to sequence, seq2seq) 是指输入和输出各为一个序列(如一句话) 的任务。本节将输入序列称作源序列,输出序列称作目标序列。序列到序列有非常多的重要应用, 其中最有名的是机器翻译( machine translation), 机器翻译模型的输入是待翻译语言(源语言) 的文本,输出则是翻译后的语言(目标语言)

小白入门LLM大模型最牛X教程------上交《动手学大模型应用开发》!

本项目是一个面向小白开发者的大模型应用开发教程,旨在结合个人知识库助手项目,通过一个课程完成大模型开发的重点入门,涵盖了大模型应用开发的方方面面,主要包括: 教程一共有七章内容: 《动手学大模型》是上海交大 更新的系列编程实践教程。从已经跟新的内容来看,侧重安全垂直方向。命名是向他们的学长李沐的《动手学深度学习》课程致敬。 感受下大纲、课件和教程风格: 微调与部署 提示学习与思维

搭建k8s集群(一)------创建虚拟机

参考视频教程:    **Kubernetes实战高可用集群搭建,配置,运维与应用  ** 在搭建kubernetes集群之前,我们需要先创建三个完全相同的虚拟机。分别模拟为一个master主节点 和两个node01、node02工作节点。 第一步:新建三个文件夹用来存放将要创建的虚拟机 第二步:创建服务器版虚拟机 在虚拟机创建过程中,有很多步骤下面没有提到,全部为默认操作

嵌入式系统------ARM

目录 一.c语言回顾         1.特殊符号         (1)const         (2)static         (3)extern         2.内存的结构         (1)kernel:内核         (2)栈区         (3)堆区         (4)bss           (5) data 3.知识点 4

apk系列------app加service遇到的问题

问题1:在androidmanefist.xml加入service的定义之后出现了exported service does not require permission 回答: 你的service不需要权限设置,内部就可以调用,你把加的限制或者intent-filter去掉试试 问题2:apk安装进去之后遇到出错:PhoneFactory.getDefaultPhone must be

c tool系列------c语言编程常用语句

针对main函数的argc,argv for (i = 1; i < argc ;) {if (0 == strcmp(argv[i], "-m") && (argc - i > 1)) {tty_modem = argv[i + 1];i += 2;} else if (0 == strcmp(argv[i], "-p") && (argc - i > 1)) {tty_pc = a