网络赛用头文件

今天浙江理工的邀请赛 感觉网络赛还要打头文件好蛋疼……

看cf里一个个巨长(或者巨短)的头文件bigger满满……

所以呢~就把头文件放在这里~

以后网络赛就不用再打头文件 直接来这复制粘贴就可以了~

好机智 2333...

 1 //#include<bits/stdc++.h>
 2 #include<cstdio>
 3 #include<iostream>
 4 #include<algorithm>
 5 #include<cmath>
 6 #include<cstring>
 7 #include<string>
 8 #include<ctime>
 9 #include<map>
10 #include<set>
11 #include<vector>
12 #include<queue>
13 #include<cstdlib>
14 #include<cassert>
15 #include<sstream>
16 #include<stack>
17 #include<list>
18 #include<bitset>
19 #define cl(a,b) memset(a,b,sizeof(a))
20 #define debug(x) cerr<<#x<<"=="<<(x)<<endl
21 using namespace std;
22 typedef long long ll;
23 typedef long double ldb;
24 typedef pair<int,int> pii;
25 
26 const int inf=0x3f3f3f3f;
27 const int maxn=1e9+10;
28 const int mod=1e7+7;
29 const double eps=1e-8;
30 const double pi=acos(-1);
31 
32 int dx[8]= {0,0,1,-1,1,-1,1,-1};
33 int dy[8]= {1,-1,0,0,-1,1,1,-1};
34 
35 ll gcd(ll a,ll b){return a?gcd(b%a,a):b;}
36 ll powmod(ll a,ll x,ll mod){ll t=1;while(x){if(x&1)t=t*a%mod;a=a*a%mod;x>>=1;}return t;}
37 //---------------------------------------ヽ(^。^)丿
38 int main()
39 {
40 
41     return 0;
42 }
43 /*
44 
45 
46 
47 */
 1 #include<bits/stdc++.h>
 2 #define cl(a,b) memset(a,b,sizeof(a))
 3 #define debug(a) cerr<<#a<<"=="<<a<<endl
 4 using namespace std;
 5 typedef long long ll;
 6 typedef pair<int,int> pii;
 7 
 8 const int maxn=1e5+10;
 9 
10 int main()
11 {
12 //    freopen("in.txt","r",stdin);
13 
14     return 0;
15 }/*
16 
17 
18 
19 */
原文地址:https://www.cnblogs.com/general10/p/5967439.html