C++ FastIO
一个基于 fread 和 fwrite 的 C++ 快速输入输出模板(Fast I/O)。
# 源码
#include <bits/stdc++.h>
using namespace std;
namespace fastio {
static constexpr int SZ = 1 << 20;
char inbuf[SZ], outbuf[SZ], *p1 = inbuf, *p2 = inbuf, *p3 = outbuf;
inline ch
more...


