当前位置: 代码迷 >> 综合 >> acm 2054 这道题关键是输入数据的处理
  详细解决方案

acm 2054 这道题关键是输入数据的处理

热度:33   发布时间:2023-12-22 07:33:52.0

if  A==B

刚刚看这道题的时候因为很水,没想到我想的太水了。在网上看了很多人讨论之后才发现原来是这样:数据的输入格式题目根本没有给出。可能是 00.0 00.0000 1.00 001.000

等等,稀奇的数字。但是本质上就是去除数字开头语结尾的无用0.就可以了。

输入的字符串容量要足够大。

 

#include<iostream>
#include<stdio.h>
#include<string.h>
using namespace std;
int isC(char *s)  //是否有小数点
{
    char *p=s;

   while(*p!='\0')
{
    if(*p=='.')
       return 1;
    p++;
}
return 0; 
 
}
  void cancelZero(char *s)
{

   int len=strlen(s);
     s=s+len-1;
    while(*s=='0')
{
     (*s)='\0';
      s--;
}
if(*s=='.')  //00.00         不能忽略这个
 (*s)='\0';
}

int main(void)
{
   int n,m;
  char a[100000],b[100000],*x,*y;                   
while(scanf("%s%s",&a,&b)!=EOF)
{
   x=a;
  y=b;
  while(*x=='0')x++;
while(*y=='0')y++;

  if(isC(a))
   cancelZero(x);
  if(isC(b))
   cancelZero(y);
printf(strcmp(x,y)?"NO\n":"YES\n");
 


}


}