用以下代码可以加速 cin、cout 的输入输出速度。但还是比 scanf、printf 慢一点。

1
2
cin.tie(0);
ios::sync_with_stdio(false);