快读模板

getchar的是直接读入1 bity的数据转化为插入char类型的,所以我们可以通过它把输入转成整型,效率会高很多

inline ll read(){
    int x=0,w=1;char c=getchar();
    while(c<'0'||c>'9'){if(c=='-')w=-1;c=getchar();}
    while(c<='9'&&c>='0'){x=(x<<3)+(x<<1)+c^48';c=getchar();}
    return x*w;
}

使用:

int n=read();
上一篇:AGC035D Add and Remove 题解


下一篇:移植qt5.3.1到arm