模板输入输出优化
Posted jian-song
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了模板输入输出优化相关的知识,希望对你有一定的参考价值。
输入
inline ll read() ll f=1,sum=0; char ch=getchar(); while(!isdigit(ch))if(ch==‘-‘)f=-1;ch=getchar(); while(isdigit(ch))sum=(sum<<1)+(sum<<3)+(ch^48);ch=getchar(); return f*sum;
输出
inline void write(int x) if(x<0) putchar(‘-‘),x=-x; if(x>9) write(x/10); putchar(x%10+‘0‘);
以上是关于模板输入输出优化的主要内容,如果未能解决你的问题,请参考以下文章