头文件

其他代码中省略

#include <bits/stdc++.h>
using namespace std;
#define For(i,x,y) for(int i=x;i<=y;++i)
#define mem(a,x) memset(a,x,sizeof a)
#define PB push_back
#define MP make_pair
#define fi first
#define se second
typedef long long LL;
typedef unsigned long long ULL;
typedef long double LD;
typedef pair<int,int> PII;
#define getchar() (p1==p2&&(p2=(p1=buf)+fread(buf,1,1<<20,stdin),p1==p2)?EOF:*p1++)
char buf[1<<20],*p1=buf,*p2=buf;
template<typename T>void read(T &x){
	x=0;bool f=1;char c=getchar();
	for(;!isdigit(c);c=getchar())if(c=='-')f=0;
	if(f)for(;isdigit(c);c=getchar())x=x*10-48+c;
	else for(;isdigit(c);c=getchar())x=x*10+48-c;
}
template<typename T,typename ...Args>void read(T &t, Args &...args)
	{ read(t),read(args...); }



int main() {
//	freopen(".in","r",stdin);
//	freopen(".out","w",stdout);
	
}
上一篇:【LeetCode】第48题——旋转图像(难度:中等)


下一篇:剑指OFFER系列之48----最长不含重复字符的子字符串