标签:blog io ar os sp div log bs 时间
std::ios::sync_with_stdio(false);
在main 函数中加上这么一句话。
可以打消iostream的输入输出缓存,可以节省许多时间,使效率与scanf与printf相差无几。
因为 cin,cout之所以效率低,是因为先把要输出的东西存入缓冲区,再输出,导致效率降低。
标签:blog io ar os sp div log bs 时间
原文地址:http://www.cnblogs.com/wushuaiyi/p/4143190.html