取消cin后摇(跑得更快)

ios::sync_with_stdio(false);

然后加上下面的还会快一点…

这样解除cin与cout的绑定,进一步加快执行效率。

cin.tie(0);
cout.tie(0);