此文为博主原创题解,转载时请通知博主,并把原文链接放在正文醒目位置。
快读=.=
嗯
是个很重要的东西
快读的模板是@bwx写的
同时也推荐她的博客ovo
http://www.cnblogs.com/shingen/
然后也没好解释的了
每次题目数据较大的时候码上就是
1 inline int read(){ 2 char ch, c; 3 int res = 0; 4 while (ch = getchar(), ch < ‘0‘ || ch > ‘9‘) c = ch; 5 res = ch - 48; 6 while (ch = getchar(), ch >= ‘0‘ && ch <= ‘9‘) 7 res = (res << 3) + (res << 1) + ch - 48; 8 if (c == ‘-‘) res = -res; 9 return res; 10 }
时间: 2024-10-03 01:38:51