博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
缺省源再次修正。。。
阅读量:5036 次
发布时间:2019-06-12

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

加了几个常用宏,OI改成了模板式

1 #include
2 #include
3 #include
4 #include
5 #include
6 #include
7 #include
8 #define pau putchar(' ') 9 #define ent putchar('\n')10 #define mse(a,b) memset(a,b,sizeof(a))11 #define ren(x) for(ted*e=fch[x];e;e=e->nxt)12 #define rep(i,s,t) for(int i=s,__=t;i<=__;i++)13 #define dwn(i,s,t) for(int i=s,__=t;i>=__;i--)14 using namespace std;15 inline int read(){16 int x=0;bool sig=true;char ch=getchar();17 for(;!isdigit(ch);ch=getchar())if(ch=='-')sig=false;18 for(;isdigit(ch);ch=getchar())x=10*x+ch-'0';return sig?x:-x;19 }20 template
inline void write(T x){21 if(x==0){putchar('0');return;}if(x<0)putchar('-'),x=-x;22 int len=0;static T buf[20];while(x)buf[len++]=x%10,x/=10;23 for(int i=len-1;i>=0;i--)putchar(buf[i]+'0');return;24 }25 int main(){26 return 0;27 }

 

转载于:https://www.cnblogs.com/chxer/p/4740591.html

你可能感兴趣的文章
SVN的忽略和只读使用方法学习记录
查看>>
smartupload 上传与下载(转载)
查看>>
Module
查看>>
Android TextView : “Do not concatenate text displayed with setText”
查看>>
SpringCloud Feign异常处理
查看>>
python接口自动化测试三十五:用BeautifulReport生成报告
查看>>
Microsoft Visual Studio is waiting for an internal operation to complete 解决方法
查看>>
Spark Streaming笔记整理(二):案例、SSC、数据源与自定义Receiver
查看>>
组播业务开通
查看>>
Java开发技术大揭底——让你认知自己技术上的缺陷,成为架构师
查看>>
MySQL:如何维护binlog?
查看>>
Android Studio 的常用设置
查看>>
Pythonic八荣八耻
查看>>
p2.BTC-数据结构
查看>>
封装自己的getClass
查看>>
python字符串的常用方法
查看>>
.net4.0、.net4.5、.net4.6 三者对系统的要求
查看>>
分布式下的session处理方式
查看>>
LeetCode(30) Substring with Concatenation of All Words
查看>>
哈夫曼编码问题再续(下篇)——优先队列求解
查看>>