1. 程式人生 > >TopCoder及其外掛安裝

TopCoder及其外掛安裝

一、你的電腦得有個java環境,要是沒有那就 點選這裡下載 不要擔心,這是官網

二、你得有個TopCoder的客戶端安裝包,要是沒有那就 點選這裡下載 不要擔心,這也是官網

三、準備三個外掛:

       1、FileEdit 

     2、CodeProcessor 

     3、TZTester 

四、安裝外掛(ps:每一步都要記得儲存哦)

    1、登陸arena之後,選擇:Options → Editors,調出了新的視窗,按 Add ,然後在 name 欄填 FileEdit ,EntryPoint 欄填 fileedit.EntryPoint,路徑的話,直接瀏覽FileEdit.jar 所在的位置即可。完成之後按OK。

    2、繼續 options → Editors,調出了新的視窗,按Add(ps:這次要新增以上全部三個檔案包括 FileEdit.jar )。這一次 name 欄填 CodeProcessor ,EntryPoint 欄填 codeprocessor.EntryPoint,路徑欄:直接瀏覽三個檔案就可以。完成之後按ok

    3、選擇 CodeProcessor 做你的 Default Editor(ps:就是在前面的兩個白色的括號中的第一個打勾), 按 Save鍵。

    4、選定 CodeProcessor (ps:是高亮顯示,不是在前面的兩個白色的方括號裡打勾哦),按 Configure 。

在 Editor EntryPoint 欄,鍵入 fileedit.EntryPoint,在Processor Class 欄鍵入 tangentz.TZTester,按Verify,彈出視窗看是否全部found,是的話按 OK 鍵返回,不是的話看前面的操作是否有誤。然後再按後面的 configure,勾上 “Write the problem description using HTML”,把 ”File Extension“ 那裡改成 html ,這樣題目描述就會被生成一個 html 檔案,方便看題。把 ”Backup existing file when overwrite“ 前面的勾去掉吧,那東西幾乎沒用。 在 “Enter directory read/write problems to:” 這裡填上你放程式檔案的絕對路徑
然後按一下 ”code template“,把 ”language“ 改成 c++,用下面的模版替換裡面原來的模板:

$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 REP(i,n) for(i=0;i<(n);++i)
#define FOR(i,l,h) for(i=(l);i<=(h);++i)
#define FORD(i,h,l) for(i=(h);i>=(l);--i)

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

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

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

然後一起儲存,就OK了。現在進一個"Practice Rooms" 開一道題目看看,是否在你自己指定的資料夾目錄裡生成了題目和程式碼。如果,沒有,在看看上面的操作你是否對了。