摘要: 引子——快读 inline int read() { char ch;int x=0; while((ch=getchar())<33); for(;ch>='0'&&ch<='9';x=x*10+ch-'0',ch=getchar()); return x; } 这段代码已经经过了一定程度的优化。 阅读全文
posted @ 2021-08-21 15:23 ExplodingKonjac 阅读(62) 评论(0) 推荐(0) 编辑