Leetcode c++ 加速代码


static int n=[](){

    std::ios::sync_with_stdio(false);

    std::cin.tie(nullptr);

    return 0;

}();

在一位大佬的朋友圈看到的,把这段代码放在开头,试了下真的有用。

原因不知道,好像是异步io减少了阻塞的时间。。。

你可能感兴趣的:(算法)