博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
刷题中遇到的C++ cin与cout运行超时
阅读量:5244 次
发布时间:2019-06-14

本文共 244 字,大约阅读时间需要 1 分钟。

cin与cout慢是有原因的,默认的时候cin与stdin总是保持同步,同时cout和stdout也一样,两者混用不会输出顺序错乱。

对两者的兼容性导致cin有许多额外的开销。

禁用这个特性的语句是

std::ios::sync_with_stdio(false);

取消同步后会提速很多,但是仍然比不上scanf与printf。

用什么就根据题目数据量随机应变吧。

转载于:https://www.cnblogs.com/AbsolutelyPerfect/p/8409136.html

你可能感兴趣的文章
实验四
查看>>
Elastic Stack-Elasticsearch使用介绍(三)
查看>>
MacOS copy图标shell脚本
查看>>
第八章 方法
查看>>
国外常见互联网盈利创新模式
查看>>
Oracle-05
查看>>
linux grep 搜索查找
查看>>
Not enough free disk space on disk '/boot'(转载)
查看>>
android 签名
查看>>
堆 栈
查看>>
Kth Smallest Element in Unsorted Array
查看>>
vue项目中使用百度统计
查看>>
android:scaleType属性
查看>>
SuperEPC
查看>>
RBAC用户角色权限设计方案
查看>>
thymeleaf
查看>>
CentOS7安装iptables防火墙
查看>>
mysql-5.7 innodb 的并行任务调度详解
查看>>
shell脚本
查看>>
Upload Image to .NET Core 2.1 API
查看>>