码迷,mamicode.com
首页 > 其他好文 > 详细

超级读入挂

时间:2019-07-02 21:34:09      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:blank   fine   ||   ace   fas   mes   int   name   ror   

namespace fastIO {
#define BUF_SIZE 100000
//fread -> read
bool IOerror = 0;
inline char nc() {
static char buf[BUF_SIZE], p1 = buf + BUF_SIZE, pend = buf + BUF_SIZE;
if(p1 == pend) {
p1 = buf;
pend = buf + fread(buf, 1, BUF_SIZE, stdin);
if(pend == p1) {
IOerror = 1;
return -1;
}
}
return p1++;
}
inline bool blank(char ch) {
return ch == ‘ ‘ || ch == ‘\n‘ || ch == ‘\r‘ || ch == ‘\t‘;
}
inline void read(int &x) {
char ch;
while(blank(ch = nc()));
if(IOerror)
return;
for(x = ch - ‘0‘; (ch = nc()) >= ‘0‘ && ch <= ‘9‘; x = x
10 + ch - ‘0‘);
}
#undef BUF_SIZE
};
using namespace fastIO;

超级读入挂

标签:blank   fine   ||   ace   fas   mes   int   name   ror   

原文地址:https://www.cnblogs.com/Diliiiii/p/11122885.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!