网络赛用头文件
今天浙江理工的邀請賽 感覺網(wǎng)絡(luò)賽還要打頭文件好蛋疼……
看cf里一個(gè)個(gè)巨長(或者巨短)的頭文件bigger滿滿……
所以呢~就把頭文件放在這里~
以后網(wǎng)絡(luò)賽就不用再打頭文件 直接來這復(fù)制粘貼就可以了~
好機(jī)智 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 */?
轉(zhuǎn)載于:https://www.cnblogs.com/general10/p/5967439.html
總結(jié)
- 上一篇: 一鼓作气 博客--第六篇 note6
- 下一篇: getopt()和getopt_long