【1060】Are They Equal (25分)

简介: 【1060】Are They Equal (25分)【1060】Are They Equal (25分)
#include<iostream>
#include<stdio.h>
#include<stdlib.h>
#include<math.h>
#include<string.h>
#include<algorithm>  
#include<map>
#include<vector>
#include<queue> 
#include<string>
using namespace std;
//分两种情况,注意数据前面可能有前导0
int n;//   有效位数
string deal(string s,int& e){
  int k=0; //s的下标
  while(s.length()>0 && s[0]=='0'){
    s.erase(s.begin());  //去掉s的前导零
  }
  if(s[0] == '.'){ //若去掉前导零后是小数点,则说明s是小于1的小数
    s.erase(s.begin());  //去掉小数点
    while(s.length()>0 && s[0]=='0'){
      s.erase(s.begin()); //去掉小数点后非零位前的所有零
      e--;  //每去掉一个0,指数e减去1
    }
  }else{  //r若去掉前导零后不是小数点,则找到后面的小数点删除
    while(k<s.length() && s[k] != '.'){ //寻找小数点
      k++;
      e++;  //只要不遇到小数点,就让小数点e++
    }
    if(k<s.length()){  //while结束后k<s.length(),说明遇到了小数点
      s.erase(s.begin()+k); //把小数点删除
    }
  }
  if(s.length()==0){
    e=0;  //如果去除前导零后s的长度变为0,则说明这个数是0
  }
  int num=0;
  k=0;
  string res;
  while(num<n){ //只要精度还没达到n
    if(k<s.length())  res +=s[k++]; //只要还有数字,就加到res末尾
    else res+='0';  //否则res末尾添加0
    num++;  //精度加1
  }
  return res;
}
int main(){   
  string s1,s2,s3,s4;
  cin >> n>>s1>>s2;
  int e1=0,e2=0;  //e1,e2为s1与s2的指数
  s3=deal(s1,e1);
  s4=deal(s2,e2);
  if(s3==s4 && e1==e2){  //若主体相同且指数相同,则输出"YES"
    cout<< "YES 0."<<s3<<"*10^"<<e1<<endl;
  }else{
    cout<<"NO 0."<<s3<<"*10^"<<e1<<" 0."<<s4<<"*10^"<<e2<<endl;
  }
  system("pause");
    return 0;   
}
相关文章
|
机器学习/深度学习 存储 C++
【PAT甲级 - C++题解】1053 Path of Equal Weight
【PAT甲级 - C++题解】1053 Path of Equal Weight
83 0
PTA 1087 有多少不同的值 (20 分)
当自然数 n 依次取 1、2、3、……、N 时,算式 ⌊n/2⌋+⌊n/3⌋+⌊n/5⌋ 有多少个不同的值?
74 0
LeetCode 1342. 将数字变成 0 的操作次数 Number of Steps to Reduce a Number to Zero
LeetCode 1342. 将数字变成 0 的操作次数 Number of Steps to Reduce a Number to Zero
Codeforces Round #747 (Div. 2) D. The Number of Imposters(扩展域并查集 带权并查集)
Codeforces Round #747 (Div. 2) D. The Number of Imposters(扩展域并查集 带权并查集)
113 0
h0125. 求sum(2) (15 分)
h0125. 求sum(2) (15 分)
62 0
【1053】Path of Equal Weight (30 分)
【1053】Path of Equal Weight (30 分) 【1053】Path of Equal Weight (30 分)
113 0
【1093】Count PAT‘s (25分)【递推】
若直接暴力解会超时!! 可以先算出T的个数(一层for
110 0
【1144】The Missing Number (20 分)
【1144】The Missing Number (20 分) 【1144】The Missing Number (20 分)
79 0