728x90
printf, scanf에 비하면 c++의 입출력인 cin, cout은 시간은 확연히 느립니다.
cin, cout이 stdio 버퍼와 싱크를 맞추기 때문인데, 이를 해제하면 입출력을 빠르게 할 수 있습니다.
std::ios_base::sync_with_stdio(false);
std::cin.tie(nullptr);
std::cout.tie(nullptr);
728x90
'SW > C++' 카테고리의 다른 글
[C++] Visual Studio <bits/stdc++.h> 오류 에러 파일 소스를 열 수 없습니다. (0) | 2020.08.24 |
---|---|
[C++] STL:Vector (0) | 2020.06.27 |
댓글