加速C++:std::ios::sync_with_stdio(false);cin.tie(NULL);

static int x = [](){ 
  ios::sync_with_stdio(false); 
  cin.tie(NULL); 
  // cout.tie(NULL); 
  return 0;  
}();

整体上这个函数是可以加速的!

1、static int x = [](){}();  这种奇怪的函数写法,据说是C++11新引入的lamnda 表达式,C++11我也不甚了解,想要了解lamnda 表达式的可以转到https://www.cnblogs.com/DswCnblog/p/5629165.html(给自己存一下)

2、ios::sync_with_stdio(false);--开关:C++的输入输出流(iostream)是否兼容C的输入输出(stdio)

C++为了兼容C而采取的保守措施。因为C++中的std :: cin和std :: cout为了兼容C,保证在代码中同时出现std :: cin和scanf或std :: cout和printf时输出不发生混乱,所以C++用一个流缓冲区来同步C的标准流。通过std :: ios_base :: sync_with_stdio函数可以解除这种同步,让std :: cin和std :: cout不再经过缓冲区,自然就节省了许多时间。

当设置为false时,cin就不能和scanf,sscanf, getchar, fgets等同时使用。

据说,endl用”\n”代替和cout使用,也可节约时间。

3、cin.tie(NULL); 

因为std :: cin默认是与std :: cout绑定的,所以每次操作的时候(也就是调用”<<”或者”>>”)都要刷新(调用flush),这样增加了IO的负担,通过tie(NULL)来解除std :: cin和std :: cout之间的绑定,来降低IO的负担使效率提升。

#include 
int main() {
  std::ios::sync_with_stdio(false);
  cin.tie(NULL);
  ... 
}



参考:

https://blog.csdn.net/qq_32320399/article/details/81518476 

https://blog.csdn.net/acm_10000h/article/details/48850599

https://blog.csdn.net/qq100440110/article/details/51056306

你可能感兴趣的:(leetcode)