博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
1060. Are They Equal (25)
阅读量:4072 次
发布时间:2019-05-25

本文共 2501 字,大约阅读时间需要 8 分钟。

1060. Are They Equal (25)

时间限制
50 ms
内存限制
65536 kB
代码长度限制
16000 B
判题程序
Standard
作者
CHEN, Yue

If a machine can save only 3 significant digits, the float numbers 12300 and 12358.9 are considered equal since they are both saved as 0.123*105 with simple chopping. Now given the number of significant digits on a machine and two float numbers, you are supposed to tell if they are treated equal in that machine.

Input Specification:

Each input file contains one test case which gives three numbers N, A and B, where N (<100) is the number of significant digits, and A and B are the two float numbers to be compared. Each float number is non-negative, no greater than 10100, and that its total digit number is less than 100.

Output Specification:

For each test case, print in a line "YES" if the two numbers are treated equal, and then the number in the standard form "0.d1...dN*10^k" (d1>0 unless the number is 0); or "NO" if they are not treated equal, and then the two numbers in their standard form. All the terms must be separated by a space, with no extra space at the end of a line.

Note: Simple chopping is assumed without rounding.

Sample Input 1:
3 12300 12358.9
Sample Output 1:
YES 0.123*10^5
Sample Input 2:
3 120 128
Sample Output 2:
NO 0.120*10^3 0.128*10^3
#include 
#include
#include
#include
#include
#include
#include
using namespace std;void modity(string *s){ for(int i=0; i<(*s).size(); ++i) { if((*s)[i]!='0') break; else { (*s).erase((*s).begin()+i); i--; } } if((*s).size()==0||(*s)[0]=='.') *s = "0"+(*s); bool flag = false; for(int i=0; i<(*s).size(); ++i) { if((*s)[i]!='0'&&(*s)[i]!='.') { flag = true; break; } } if(!flag) (*s)="0";}void solution(string *a,int *exponentA,int n){ int found = (*a).find('.',0); if(found==string::npos) //小数点不存在构造小数点 1230089 { if((*a)[0]!='0')//排除0的情况 { *exponentA = (*a).size(); } (*a) = "0."+(*a); } else { if(found==1&&(*a)[0]=='0')//形如 0.1230089 { for(int i=found+1; i<(*a).size(); ++i) { if((*a)[i]!='0') break; else { (*a).erase((*a).begin()+i); i--; (*exponentA)--; } } } else { *exponentA = found; (*a).erase((*a).begin()+found); (*a)= "0."+(*a); } } if((*a).size()
>n>>a>>b; modity(&a); modity(&b);//除去前导0; int exponentA=0,exponentB=0; solution(&a,&exponentA,n); solution(&b,&exponentB,n); if(a==b&&exponentA==exponentB) { printf("YES %s*10^%d\n",a.c_str(),exponentA); } else { printf("NO %s*10^%d %s*10^%d\n",a.c_str(),exponentA,b.c_str(),exponentB); } return 0;}

转载地址:http://smhji.baihongyu.com/

你可能感兴趣的文章
【设计模式】学习笔记13:组合模式(Composite)
查看>>
hdu 1011 Starship Troopers (树形背包dp)
查看>>
hdu 1561 The more, The Better (树形背包dp)
查看>>
【设计模式】学习笔记14:状态模式(State)
查看>>
poj 1976 A Mini Locomotive (dp 二维01背包)
查看>>
斯坦福大学机器学习——因子分析(Factor analysis)
查看>>
项目导入时报错:The import javax.servlet.http.HttpServletRequest cannot be resolved
查看>>
linux对于没有写权限的文件如何保存退出vim
查看>>
Windows下安装ElasticSearch6.3.1以及ElasticSearch6.3.1的Head插件
查看>>
IntelliJ IDEA 下的svn配置及使用的非常详细的图文总结
查看>>
【IntelliJ IDEA】idea导入项目只显示项目中的文件,不显示项目结构
查看>>
ssh 如何方便的切换到其他节点??
查看>>
JSP中文乱码总结
查看>>
Java-IO-File类
查看>>
Java-IO-java的IO流
查看>>
Java-IO-输入/输出流体系
查看>>
Java实现DES加密解密
查看>>
HTML基础
查看>>
Java IO
查看>>
Java NIO
查看>>