参加多年oi类比赛,从pascal到c++,从小学组到一等,也应该开个博客了。
先附上我标准程序框架吧:
#include <iostream> #include <cstdlib> #include <cstdio> #include <cmath> #include <vector> #include <cstring> #include <map> #include <set> #include <queue> #include <algorithm> using namespace std; inline int read() { int s=0,w=1; char ch=getchar(); while (ch<=‘0‘||ch>‘9‘) { if (ch==‘-‘) w=-1; ch=getchar(); } while (ch>=‘0‘&&ch<=‘9‘) { s=s*10+ch-‘0‘; ch=getchar(); } return s*w; } int main() { ios::sync_with_stdio(false); //freopen(".in","r",stdin); //freopen(".out","w",stdout); return 0; }
emm
先这样吧……