先看 版本以及是否打开优化开关
- 快读快写(见文末)
- 频繁改变的变量加 register
- 访问
a[i]
后访问a[i+1]
、a[i+2]
··· - 数组开奇数(原因不明)
- 循环展开:
for(int i=1;i<=10000;i++)a[i]++;
for(int i=1;i<=10000;i+=4)a[i]++,a[i+1]++,a[i+2]++,a[i+3]++;
- 位运算:
x*=(2,4,8,16...)
x<<=(1,2,3,4...)
(/=
>>=
)x%2
x&1
x>y
int:y-x>>31
long long:y-x>>63
-x
~x+1
swap(x,y)
x^=y^=x^=y
abs(x)
(x^(x>>31))-(x>>31)
long long:31
63
- bool int/bitset
- inline
if(a)b;else c;
a?b:c;
if(a)b;
a&&b;
;
,
int i=1;
int i(1);
i++;
++i;
namespace io { | |
const int __SIZE = (1 << 21) + 1; | |
char ibuf[__SIZE], *iS, *iT, obuf[__SIZE], *oS = obuf, *oT = oS + __SIZE - 1, __c, qu[55]; int __f, qr, _eof; | |
#define Gc() (iS == iT ? (iT = (iS = ibuf) + fread (ibuf, 1, __SIZE, stdin), (iS == iT ? EOF : *iS ++)) : *iS ++) | |
inline void flush () { fwrite (obuf, 1, oS - obuf, stdout), oS = obuf; } | |
inline void gc (char &x) { x = Gc(); } | |
inline void pc (char x) { *oS ++ = x; if (oS == oT) flush (); } | |
inline void pstr (const char *s) { int __len = strlen(s); for (__f = 0; __f < __len; ++__f) pc (s[__f]); } | |
inline void gstr (char *s) { for(__c = Gc(); __c < 32 || __c > 126 || __c == ' ';) __c = Gc(); | |
for(; __c > 31 && __c < 127 && __c != ' ' && __c != '\n' && __c != '\r'; ++s, __c = Gc()) *s = __c; *s = 0; } | |
template <class I> inline bool gi (I &x) { _eof = 0; | |
for (__f = 1, __c = Gc(); (__c < '0' || __c > '9') && !_eof; __c = Gc()) { if (__c == '-') __f = -1; _eof |= __c == EOF; } | |
for (x = 0; __c <= '9' && __c >= '0' && !_eof; __c = Gc()) x = x * 10 + (__c & 15), _eof |= __c == EOF; x *= __f; return !_eof; } | |
template <typename I,typename ...Args> inline bool gi(I &tmp, Args &...tmps) { return gi(tmp) ? gi(tmps...), 1 : 0; } | |
template <class I> inline void print (I x) { if (!x) pc ('0'); if (x < 0) pc ('-'), x = -x; | |
while (x) qu[++ qr] = x % 10 + '0', x /= 10; while (qr) pc (qu[qr --]); } | |
template <class I> inline void write(char _c, I x) { print(x), pc(_c); } | |
template <typename I,typename ...Args> inline void write(char __enc, I tmp, Args ...tmps) { write(__enc, tmp), write(__enc, tmps...); } | |
struct Flusher_ {~Flusher_(){flush();}}io_flusher_; | |
} using io::pc; using io::gc; using io::pstr; using io::gstr; using io::gi; using io::write; using io::print; |
用法:
使用
gi(x, ...);
读入任意多个任意的整型x
等价于scanf("%d...", &x, ...);
其中可以将%d
自动识别为对应类型。使用
print(x);
输出一个任意的整型x
等价于printf("%d", x);
其中可以将%d
自动识别为对应类型。使用
write(c, x, ...);
输出任意多个任意的整型x
并以c
为分隔符,等价于printf("%d%c...", x, c, ...);
其中可以将%d
自动识别为对应类型。使用
gc(c);
读入一个字符c
等价于scanf("%c", &c)
使用
pc(c);
输出一个字符c
等价于putchar(c);
使用
gstr(str);
读入一个字符串str
等价于scanf("%s", str);
可以用gstr(str + 1);
替换scanf("%s", str + 1);
使用
pstr(str);
输出一个字符串str
等价于printf("%s", str);