码迷,mamicode.com
首页 > 编程语言 > 详细

c++竞赛标准框架

时间:2018-02-04 14:42:22      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:map   div   get   return   pre   blog   etc   框架   mat   

参加多年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

先这样吧……

c++竞赛标准框架

标签:map   div   get   return   pre   blog   etc   框架   mat   

原文地址:https://www.cnblogs.com/yzher/p/8412980.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!