C++常用快读

1、快读相关代码

inline int read() {
    int x=0,f=0;
    char ch=getchar();
    while(!isdigit(ch))f|=(ch=='-'),ch=getchar();
    while(isdigit(ch))x=(x<<1)+(x<<3)+(ch^48),ch=getchar();
    return f?-x:x;
}

2、用cin,cout时

ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
posted @ 2022-11-17 18:25  风归去  阅读(61)  评论(0编辑  收藏  举报