读入优化~~~(个人学习笔记)

Posted hcute(某高中oi渣)

tags:

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

基本模板:
inline int read()
{
int x=0,w=1; char ch=0;
while(ch<‘0‘ || ch>‘9‘){if(ch==‘-‘)w=-1;ch=getchar();}
while(ch>=‘0‘&&ch<=‘9‘)x=(x<<3)+(x<<1)+ch-‘0‘,ch=getchar();
return x*w;
}

 

std::ios::sync_with_stdio(false);

两个都加上会更快,但是第二个貌似要注意scanf  cin cout  printf 一起用的时候会错误!

以上是关于读入优化~~~(个人学习笔记)的主要内容,如果未能解决你的问题,请参考以下文章

Tensorflow学习笔记:神经网络优化

树链剖分(轻/重链剖分学习笔记)

HTTP 1.1学习笔记

EIGRP个人学习笔记

Python学习的个人笔记(基础语法)

Hibernate个人学习笔记