现在的位置: 首页 > 综合 > 正文

topcoder 配置

2018年02月23日 ⁄ 综合 ⁄ 共 935字 ⁄ 字号 评论关闭

codeprocessor.EntryPoint

fileedit.EntryPoint

tangentz.TZTester

$BEGINCUT$
/*
$PROBLEMDESC$
*/
$ENDCUT$
#line $NEXTLINENUMBER$ "$FILENAME$"
#include <cstdlib>
#include <cctype>
#include <cstring>
#include <cstdio>
#include <cmath>
#include <algorithm>
#include <vector>
#include <string>
#include <iostream>
#include <sstream>
#include <map>
#include <set>
#include <queue>
#include <stack>
#include <fstream>
#include <numeric>
#include <iomanip>
#include <bitset>
#include <list>
#include <stdexcept>
#include <functional>
#include <utility>
#include <ctime>
using namespace std;

#define PB push_back
#define MP make_pair
#define long long long

#define f0(n) for(int i=0;i<n;++i)
#define fu(a,b) for(int i=a;i<=b;++i)
#define fd(a,b) for(int i=a;i>=b;--i)

typedef vector<int> VI;
typedef vector<string> VS;
typedef vector<double> VD;
typedef pair<int,int> PII;


class $CLASSNAME$
{
    public:
    $RC$ $METHODNAME$($METHODPARMS$)
    {
        return $RC$();
    }
    $TESTCODE$
};

// BEGIN CUT HERE
int main()
{
        $CLASSNAME$ ___test;
        ___test.run_test(-1);
        return 0;
}
// END CUT HERE
【上篇】
【下篇】

抱歉!评论已关闭.