加了几个常用宏,但是坚决不用rep。。。
1 #include<iostream> 2 #include<cstdio> 3 #include<cmath> 4 #include<algorithm> 5 #include<stack> 6 #include<queue> 7 #include<cstring> 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 TIL(x) for(int i=1;i<=x;i++) 13 using namespace std; 14 inline int read(){ 15 int x=0;bool sig=true;char ch=getchar(); 16 for(;!isdigit(ch);ch=getchar())if(ch==‘-‘)sig=false; 17 for(;isdigit(ch);ch=getchar())x=10*x+ch-‘0‘;return sig?x:-x; 18 } 19 inline void write(int x){ 20 if(x==0){putchar(‘0‘);return;}if(x<0)putchar(‘-‘),x=-x; 21 int len=0;static int buf[20];while(x)buf[len++]=x%10,x/=10; 22 for(int i=len-1;i>=0;i--)putchar(buf[i]+‘0‘);return; 23 } 24 int main(){ 25 return 0; 26 }
时间: 2024-10-11 09:50:05