博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
蜜汁头文件&&slow slow read
阅读量:5035 次
发布时间:2019-06-12

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


slow slow read 板子

inline int read(){    int ans=0;    char last=' ',ch=getchar();    while(ch<'0'||ch>'9') last=ch,ch=getchar();    while(ch>='0'&&ch<='9') ans=ans*10+ch-'0',ch=getchar();    if(last=='-') ans=-ans;    return ans;}

 


 读字符,忽略掉没用的东西

inline char read(){    char c;    do    {        c=getchar();    }while(c==' '||c=='\n'||c=='\0'||c=='\t');}

 

 


 

安利一波优秀的头文件  感谢大巨佬LH  有些迷

#include
#include
#include
#include
#include
#include
using namespace std;typedef long long ll;typedef long double ld;typedef pair
pr;const double pi=acos(-1);#define rep(i,a,n) for(int i=a;i<=n;i++)#define per(i,n,a) for(int i=n;i>=a;i--)#define Rep(i,u) for(int i=head[u];i;i=Next[i])#define clr(a) memset(a,0,sizeof a)#define pb push_back#define mp make_pair#define fi first#define sc secondld eps=1e-9;ll pp=1000000007;ll mo(ll a,ll pp) //取模运算 { if(a>=0 && a
>=1,a=mo(a*a,pp)) if(b&1)ans=mo(ans*a,pp); return ans; } ll read() //快读 { ll ans=0; char last=' ',ch=getchar(); while(ch<'0' || ch>'9')last=ch,ch=getchar(); while(ch>='0' && ch<='9')ans=ans*10+ch-'0',ch=getchar(); if(last=='-')ans=-ans; return ans;}

 

转载于:https://www.cnblogs.com/xiaoyezi-wink/p/10656783.html

你可能感兴趣的文章
ArchLinux安装开源VMware Tools
查看>>
DB2 锁升级示例1
查看>>
16.RDD实战
查看>>
MainFrame知识小结(20120210)—dfsort/syncsort中的数据类型
查看>>
D - Flip tile
查看>>
Java连接RabbitMQ之创建连接
查看>>
开户vim编程之--cscope支持
查看>>
python数据类型图解
查看>>
C#微信登录-手机网站APP应用
查看>>
HTML5实践 -- iPhone Safari Viewport Scaling Bug
查看>>
一位数据挖掘成功人士 给 数据挖掘在读研究生 的建议
查看>>
Python3.6.0安装
查看>>
hdu1049
查看>>
H5项目常见问题及注意事项
查看>>
索尼(SONY) SVE1512S7C 把WIN8降成WIN7图文教程
查看>>
时间模块 && time datetime
查看>>
jquery自动生成二维码
查看>>
spring回滚数据
查看>>
新浪分享API应用的开发
查看>>
美国专利
查看>>