topcoder

如何设置 TopCoder 好助手 kawigiEdit 插件

末鹿安然 提交于 2020-03-02 14:05:15
kawigiEdit插件可以提高 TopCoder编译,提交效率,可以管理保存每次SRM的代码。 kawigiEdit下载地址:http://code.google.com/p/kawigiedit/downloads/list 我用C++,以后设置是设置C++的,其他的类似。 一、添加kawigiEdit插件。 1. 打开TC客户端--Option--Editor 2. 点击Add,在弹出的       Name填写插件名称,随便写个;       EntryPoint: 写 kawigi.KawigiEdit (不可更改)       ClassPath: 选择本机下载下来的 KawigiEdit.jar 。  3. 点击OK完成。 二、设置kawigiEdit插件。   1. 打开TC客户端--Option--Editor,点进Configure 弹出来General:设置根目录:例如: D:\TopCoder\testprograms 2. 选择Languages(设置C++的): 主要设置Compile Command: E:\Program Files\Dev-Cpp\bin\g++ $PROBLEM$.cpp 【机子上的G++.exe的路径 + $PROBLEM$.cpp】 Template Oevrride: 如果自己有代码模板,可以设置,如果默认就行。 3.

topcoder SRM 625 DIV2 A

对着背影说爱祢 提交于 2020-03-02 13:22:51
题目 Problem Statement You are given an int y . We are looking for any vector <int> x that satisfies the following constraints: x has exactly three elements ( x [0] * x [1] ) + x [2] = y Each x [i] must be between -1000 and 1000, inclusive. No x [i] can be equal to 0 or 1. Find and return one such x . If there are multiple valid solutions, you may return any of them. You may assume that for our constraints on y (specified below) at least one valid x always exists. Definition Class: AddMultiply Method: makeExpression Parameters: int Returns: vector <int> Method signature: vector <int>

topcoder SRM 625 DIV2 B

给你一囗甜甜゛ 提交于 2020-03-01 16:52:59
题目 Problem Statement You have a vector <int> A with N elements. Your goal is to change it into a vector <int> that contains each number from 1 to N exactly once. The change will consist of zero or more steps. In each step, you may pick an arbitrary element of A and increment its value by k . You may pick the same element multiple times. Note that you are not allowed to decrement the value of any element. You are given the int k and the vector <int> A . Return "POSSIBLE" if it is possible to achieve your goal. Return "IMPOSSIBLE" otherwise. Definition Class: IncrementingSequence Method:

如何设置 TopCoder 好助手 kawigiEdit 插件?

风格不统一 提交于 2019-11-26 20:40:56
kawigiEdit插件可以提高 TopCoder编译,提交效率,可以管理保存每次SRM的代码。 kawigiEdit下载地址: http://code.google.com/p/kawigiedit/downloads/list 我用C++,以后设置是设置C++的,其他的类似。 一、添加kawigiEdit插件。   1. 打开TC客户端--Option--Editor   2. 点击Add,在弹出的       Name填写插件名称,随便写个;       EntryPoint: 写 kawigi.KawigiEdit (不可更改)       ClassPath: 选择本机下载下来的 KawigiEdit.jar 。   3. 点击OK完成。 二、设置kawigiEdit插件。   1. 打开TC客户端--Option--Editor,点进Configure 弹出来General:设置根目录:例如: D:\TopCoder\testprograms        2. 选择Languages(设置C++的):          主要设置Compile Command: E:\Program Files\Dev-Cpp\bin\g++ $PROBLEM$.cpp 【机子上的G++.exe的路径 + $PROBLEM$.cpp】     Template Oevrride: