Document
qwerewr

C++输入优化

为避免cin&cout导致的TLE可在主函数中加上以下三句话:

std::ios::sync_with_stdio(false); 
cin.tie(0);
cout.tie(0);
posted @ 2023-07-14 21:47  xiao王~  阅读(25)  评论(0)    收藏  举报