读入优化

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了读入优化相关的知识,希望对你有一定的参考价值。

读入优化是个好东西,但读入优化也有快有慢。

int read()

{

  int x=0,f=1;

  char ch=getchar();

  while(ch<‘0‘||ch>‘9‘)

  {

    if(ch==‘-‘)f=-1;

    ch=getchar();
  }

  while(ch<=‘9‘&&ch>=‘0‘)

  {

    x=x*10+xh-‘0‘;

    ch=getchar();
  }

  return x*f;
}

上面是本蒟蒻一直以来用的读入优化,但今天发现似乎可以用位运算再加一下速:

int read()

{

  int x=0,f=1;

  char ch=getchar();

  while(ch<‘0‘||ch>‘9‘)

  {

    if(ch==‘-‘)f=-1;

    ch=getchar();
  }

  while(ch<=‘9‘&&ch>=‘0‘)

  {

    x=(x<<1)+(x<<3)+ch-‘0‘;//不同点

    ch=getchar();
  }

  return x*f;
}

貌似可以快几毫秒,不要瞧不起几毫秒,考试时1001ms,你就t了,而999ms你就A了。

以上是关于读入优化的主要内容,如果未能解决你的问题,请参考以下文章

读入优化&输出优化

读入优化

ACM入门之读入输出优化

常用读入输出优化

读入优化

读入优化