【收藏】平时补题遇到的一些资源之类的

ECNU 退役队伍模版
kuangbin的博客
kuangbin的ACM模板
整数序列联机百科全书

std::ios::sync_with_stdio(false);//cin超级加速
cin.tie(0);
cout.tie(0);//cout不要用endl
#define _CRT_SECURE_NO_WARNINGS//vs scanf报错问题
#define int long long//万能防wa机
main(){}
#include <time.h>//随机数生成
srand((unsigned)time(NULL));
cout << "num = " << rand() << endl;

猜你喜欢

转载自blog.csdn.net/weixin_43164778/article/details/98218644