topcoder arena 插件配置

Arena插件配置

下载Arena

[地址:][http://community.topcoder.com/tc?module=MyHome]
左边:Competitions->Algorithms->Single Match Rounds Launch Arena->Load Competition Arena

下载插件

[地址:][http://community.topcoder.com/tc?module=Static&d1=applet&d2=plugins]
下载三个插件:FileEdit,CodeProcessor1.2,TZTester
将下载的Arena和三个插件放在同一个目录下,方便使用相对路径。

插件配置

启动Arena并登陆 要运行Arena,需要有JRE(Java Runtime Environment)
选择option->Editor->ADD
name:随便取一个,如CodeProcessor
EntryPoint:codeprocessor.EntryPoint,注意区分大小写
classpath:反复使用Browse加入CodeProcessor.jar,FileEdit.jar,TZTester.jar等,也可以手动输入,多个类之间以”;”隔开,可以使用相对路径

如果设置正确,在点ok后,列表中就会多出一项

选择CodeProcessor,点Configure
Editor EntryPointfileedit.EntryPoint,Configure可以对Editor进行详细的配置
Processor Classtangentz.TZTester,Verify可以校验输入是否正确
配置fileedit,点Configure, 弹出一个配置对话框. 在General选项卡中, 可以指定要保存的文件的位置。
选中Write Problem Description to separate file, 把File Extension改为html
然后转到Code Template选项卡, 输入代码模板:

$BEGINCUT$
$PROBLEMDESC$
$ENDCUT$
#line $NEXTLINENUMBER$ "$FILENAME$"
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
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)

#define LEFT    0
#define RIGHT   1
typedef vector<int> VI;
typedef vector<string> VS;
typedef vector<double> VD;
typedef long long LL64;
typedef unsigned long long LL65;
typedef pair<int,int> PII;

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

// BEGIN CUT HERE
int main()
{
$CLASSNAME$ ___test;
___test.run_test(-1);
system("pause");
}
// END CUT HERE

参考:http://blog.csdn.net/perfumekristy/article/details/8373136

你可能感兴趣的:(算法入门)