maio
[h2N7SspZmY.git] / data / pages / competitions / topcoder.txt
blob21f60fe8ca272ec6e44447695ded9d98ef7b1eb6
1 ====== TopCoder ======
3 [[http://www.topcoder.com/|TopCoder]]: [[wp>TopCoder]].
5 ===== How to install the arena plug-ins =====
7 [[http://www.topcoder.com/wiki/display/tc/How+to+install+The+Arena+plug-ins|Tutorial]] \\
9 ===== FileEdit C++ Template =====
11 <code cpp>
12 #include <string>
13 #include <vector>
14 #include <map>
15 #include <cstdio>
16 #include <iostream>
17 #include <sstream>
18 #include <algorithm>
19 #include <set>
20 #include <cstring>
21 #include <climits>
23 #define rep(i, n) repb(i, 0, n)
24 #define repb(i, b, n) repbc(i, b, n, <)
25 #define repe(i, n) repbe(i, 0, n)
26 #define repbe(i, b, n) repbc(i, b, n, <=)
27 #define repbc(i, b, n, c) for(int i = b; i c n; i++)
29 using namespace std;
31 class $CLASSNAME$ {
32         public:
33         $RC$ $METHODNAME$($METHODPARMS$) {
34                 $RC$ res;
36                 
38                 return res;
39         }
40         $TESTCODE$
43 // BEGIN CUT HERE 
44 int main()
46         $CLASSNAME$ ___test; 
47         ___test.run_test(-1); 
48
49 // END CUT HERE 
50 </code>
53 {{tag>competitions programming}}