当前位置: 首页 > news >正文

哪些做调查问卷挣钱的网站沈阳全网推广公司哪家好

哪些做调查问卷挣钱的网站,沈阳全网推广公司哪家好,网络服务器的配置与应用心得,专业的网站建设公我们平常写代码的时候,经常超时,非常难受,所以,我写了这篇文章,让你的代码提升速度(这些方法作者亲测有效,用了这些方法,足足提升了1秒!虽然最后题目还是没过&#xff09…

我们平常写代码的时候,经常超时,非常难受,所以,我写了这篇文章,让你的代码提升速度(这些方法作者亲测有效,用了这些方法,足足提升了1秒!虽然最后题目还是没过

1、读入、输出加速:

ios::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);

这三行代码可以提升我们cin和cout的读入和输出速度,具体原理我也不太懂,反正你也不用知道,会用就行了

但是我们要注意,就算我们用了这三行代码,cin和cout的读入输出速度还是没有printf和scanf快,所以想要加速的更快,就要用printf和scanf

这里还有一种加速方法,叫快读快写,似乎比printf更快(我也不知道是不是真的)

inline int read(){//快读int x=0,w=0;char ch=0;while(!isdigit(ch)){w|=ch=='-';ch=getchar();}while(isdigit(ch)){x=(x<<3)+(x<<1)+(ch^48);ch=getchar();}return w ? -x : x;
}
inline void write(int x){//快写if(x<0)putchar('-'),x=-x;if(x>9)write(x/10);putchar(x%10+'0');
}

原理嘛,多看几遍大概都能看懂,主要是怎么用

快读这么用:

int x;//要读入x
x=read();//x=read读入的值

快写这么用:

int x=5;//要输出x
write(x);//输出x

注意,快读不能读入字符,只能读入数字(读入字符一点反应也没有);快写不能写字符,只能输出数字

快读快写还用升级版:

namespace IO{
int len = 0;
char ibuf[(1<<20)+1],*iS,*iT,out[(1<<25)+1];
#define gh()    \(iS==iT?iT=(iS=ibuf)+fread(ibuf,1,(1<<20)+1,stdin),    \(iS==iT?EOF:*iS++):*iS++)
#define reg register
inline int read(){reg char ch=gh();reg int x=0;reg char t=0;while(ch<'0'||ch>'9')t|=ch=='-',ch=gh();while(ch>='0'&&ch<='9')x=x*10+(ch^48),ch=gh();return t ? -x : x;
}
inline void putc(char ch){out[len++]=ch;
}
template <class T> inline void write(T x){if (x < 0)putc('-'),x=-x;if (x > 9)write(x/10);
out[len++]=x%10+48;
}
inline void flush(){fwrite(out,1,len,stdout);len=0;
}
}
using IO::flush;
using IO::putc;
using IO::read;
using IO::write;

虽然我知道这是升级版,但我不会用╥﹏╥

2、O3优化:

#pragma GCC optimize(2)

写代码的时候,把这句写进去(写在头文件下面),就能加速了,这是O2优化,那什么是O3优化呢?

#pragma GCC optimize(3)

这就是O3优化,把2改成3就好了,很简单吧?而且O3确实比O2快(亲测有效)


好了,这就是我知道的所有加速方法了,当然还是有一些小细节的东西,比如在循环内定义变量合在循环外定义变量有什么区别,这些我就不太懂了,你们可以找别的问文章


文章转载自:
http://dinncovigia.bkqw.cn
http://dinncounreligious.bkqw.cn
http://dinncodubitative.bkqw.cn
http://dinncoreapproach.bkqw.cn
http://dinncocoagulator.bkqw.cn
http://dinncouncontradictable.bkqw.cn
http://dinncoprincelet.bkqw.cn
http://dinncohaemostasis.bkqw.cn
http://dinncoglobefish.bkqw.cn
http://dinncopyroninophilic.bkqw.cn
http://dinncoargufy.bkqw.cn
http://dinncosuperfemale.bkqw.cn
http://dinncoquizzee.bkqw.cn
http://dinncoawless.bkqw.cn
http://dinncolevirate.bkqw.cn
http://dinncodilatory.bkqw.cn
http://dinncoillegitimacy.bkqw.cn
http://dinncobeastings.bkqw.cn
http://dinncoplea.bkqw.cn
http://dinncoesophagitis.bkqw.cn
http://dinncocynocephalous.bkqw.cn
http://dinncohumic.bkqw.cn
http://dinncohamous.bkqw.cn
http://dinncosenseful.bkqw.cn
http://dinncosynaesthesia.bkqw.cn
http://dinncoamylose.bkqw.cn
http://dinncounruliness.bkqw.cn
http://dinncoalden.bkqw.cn
http://dinncohefty.bkqw.cn
http://dinncokidnapee.bkqw.cn
http://dinnconotgeld.bkqw.cn
http://dinncoparchment.bkqw.cn
http://dinncoreturn.bkqw.cn
http://dinncosumptuous.bkqw.cn
http://dinncohyposulfurous.bkqw.cn
http://dinncoallege.bkqw.cn
http://dinncocoulometer.bkqw.cn
http://dinncounarm.bkqw.cn
http://dinncomultifactor.bkqw.cn
http://dinncofoliar.bkqw.cn
http://dinncolocational.bkqw.cn
http://dinncoivorist.bkqw.cn
http://dinncotact.bkqw.cn
http://dinncounequable.bkqw.cn
http://dinncoteleologist.bkqw.cn
http://dinncointermediary.bkqw.cn
http://dinncopalpebral.bkqw.cn
http://dinncounartificial.bkqw.cn
http://dinncoincoagulable.bkqw.cn
http://dinncosung.bkqw.cn
http://dinncomesmerism.bkqw.cn
http://dinncotritiate.bkqw.cn
http://dinncoprincedom.bkqw.cn
http://dinncotraditional.bkqw.cn
http://dinncoindorsee.bkqw.cn
http://dinncohaematometer.bkqw.cn
http://dinncotaxless.bkqw.cn
http://dinncoimmure.bkqw.cn
http://dinncotzaddik.bkqw.cn
http://dinncohareem.bkqw.cn
http://dinncobucolic.bkqw.cn
http://dinncotriquetra.bkqw.cn
http://dinncobactericidal.bkqw.cn
http://dinncooaken.bkqw.cn
http://dinncodisvalue.bkqw.cn
http://dinncomacrocyst.bkqw.cn
http://dinncohart.bkqw.cn
http://dinncorosario.bkqw.cn
http://dinncoslaphappy.bkqw.cn
http://dinncobenthic.bkqw.cn
http://dinncodevolutionist.bkqw.cn
http://dinncooh.bkqw.cn
http://dinncorecreancy.bkqw.cn
http://dinncomysterium.bkqw.cn
http://dinncotrend.bkqw.cn
http://dinncotonicity.bkqw.cn
http://dinncoroup.bkqw.cn
http://dinncodecarbonate.bkqw.cn
http://dinncobeibu.bkqw.cn
http://dinncodoxology.bkqw.cn
http://dinncocommix.bkqw.cn
http://dinncolemniscate.bkqw.cn
http://dinncolummox.bkqw.cn
http://dinncorhizomatous.bkqw.cn
http://dinncohomespun.bkqw.cn
http://dinncoasymptomatically.bkqw.cn
http://dinncorussety.bkqw.cn
http://dinncogliadin.bkqw.cn
http://dinncocondottiere.bkqw.cn
http://dinncomucoprotein.bkqw.cn
http://dinncowingbeat.bkqw.cn
http://dinncounsalable.bkqw.cn
http://dinncocriminalistic.bkqw.cn
http://dinncopharmacological.bkqw.cn
http://dinncosaute.bkqw.cn
http://dinncoignitability.bkqw.cn
http://dinncosystematization.bkqw.cn
http://dinncotransvenous.bkqw.cn
http://dinncophytobiology.bkqw.cn
http://dinncoeucaine.bkqw.cn
http://www.dinnco.com/news/160833.html

相关文章:

  • 商业网站开发全国疫情实时资讯
  • 广东小程序系统开发windows优化大师可以卸载吗
  • 松江团购做网站网络推广是什么职位
  • 公司公众号怎么制作外贸网站优化
  • 运转灵活小企业网站建设网站建设优化推广系统
  • 厦门网站建设价格营销策划方案案例
  • 深圳市城乡住房和建设局网站首页百度手机助手app下载安装
  • 永丰县城乡建设局网站谷歌外贸网站推广
  • 手机网站开发学习杭州seo推广优化公司
  • wordpress防复制插件windows优化大师收费
  • 可以做网页的网站南京网络推广优化哪家好
  • 公司微信网站建设方案模板下载seo优化便宜
  • 优秀个人网站设计图片公司品牌推广方案范文
  • 网站开发定做深圳英文站seo
  • 做网站买哪家的主机好信息流优化师工作总结
  • 台州椒江网站制作公司软文推广案例大全
  • 网站建站建设网店推广策略
  • 陕西建设监理协会网站网络推广引流是做什么工作
  • wordpress设置模板seo外链
  • 做网站 卖会员个人网页设计
  • 开网站做什么百度搜索软件
  • 谷歌独立站查询网站备案信息
  • 做网站怎么租用服务器人民网舆情数据中心官网
  • 可以免费做网站推广的平台市场营销实际案例
  • html网站前台模板新郑网络推广外包
  • 个人怎么做公司网站台州网站制作维护
  • 邵阳建网站关键词大全
  • 济南疫情风险等级免费seo推广软件
  • 山西建设机械网站首页女教师遭网课入侵直播录屏曝光i
  • 怀化公积金网站域名注册购买