TopCoder is a company which administers contests in computer programming. TopCoder hosts fortnightly online algorithm competitions — known as SRMs or "single round matches" — as well as weekly competitions in design and development. The work in design and development produces useful software which ...

learn more… | top users | synonyms

2
votes
4answers
94 views

why this function is valid to caculate modular pow value?

I have seen this function in SRM 573's solution here: long modPow(long x, long y) { //Caculates x raised to the y-power modulo MOD //in O(log(y)) time by using repeated squaring long r = ...
0
votes
2answers
43 views

topcoder arena editor save path?

I'm using kawigiedit in topcoder arena, but I want to save the source code to my workplace path. I have not found an option in kawigiedit to configure the path to save the code. Is there any way to ...
-5
votes
1answer
51 views

Can I use compiler in PHP like codeblocks in C? [closed]

Can i use compiler in PHP?I want to solve problem using php how can i do that... it's server-site language... recently i heard programmers are using php in contest programming also... is there any ...
0
votes
0answers
33 views

Graph coloring variants

I am preparing for a programming competition and presently looking at graph coloring problems. I know that if the numbers of colors is set to 2, we can find if the graph can be colored such that no ...
1
vote
1answer
104 views

dynamic programming - topcoder

I've been trying out the dp tutorials on Topcoder. One of the problems given for practice was MiniPaint . I think I've got the solution partly- find the minimum no. of mispaints for a given no. of ...
0
votes
1answer
66 views

How many plus signs needed to to get a given sum?

I was doing a problem on topcoder and I came across a DP problem (http://goo.gl/hjeaS) This should have an efficient dp solution, but I'm stuck. I took an array res[i][j][k] to store the sub ...
-4
votes
2answers
82 views

Need to identify for which type of test case my code is failing [closed]

I was just trying out a code for the problem: Problem Description The problem I have is that the code I wrote works for all positive, negative, mixed (positive + negative) numbers I've tried, but It ...
1
vote
1answer
125 views

dynamic programming approach in a non-specific direction calculation

I am trying to solve Ball Removal problem on topcoder, pasting the problem statement here as login is required to access this link. Problem Statement You have N balls, where N is odd. The ...
2
votes
2answers
130 views

C# Linq slower than PHP? Solving riddle #236A

I'm training with solving Olympic IT-riddles on one site. I have provided two solutions: - C# http://ideone.com/exF1HJ - PHP http://ideone.com/WbaPHY I was confused when online ...
0
votes
1answer
368 views

Simple Nim Game

I recently learnt the basic strategy of Nim game where there are piles of elements. Then one have to chose a pile and remove any number of elements from that pile. I found some problem that is said to ...
3
votes
1answer
206 views

How to attack this tiling puzzle?

[The 1000 point problem on SRM 209, Div I] At some stage, the problem reduces to the following: Given blocks of three square units, like below, which can be rotated in any manner, how many ways are ...
7
votes
4answers
340 views

Python cartesian product of n lists with n unknown at coding time

Question what is the best way to generate a cartesian product of some lists, not knowing in advance how many lists there are? You can stop reading here if you like. Background I don't have ...
0
votes
1answer
28 views

Is “using namespace std;” exempted from the Excessive Code Rule?

The rules at http://community.topcoder.com/tc?module=Static&d1=help&d2=ratedEvent specify that Library import statements (#include, imports, using, Imports) are exempted. But in C++, using ...
0
votes
3answers
495 views

Calculating time complexity of recursive algorithm.

I have just started solving Topcoder algorithm problems and have written this algorithm for SRM 466 Div 2 LotteryTicket problem in Java. As I am not good with time complexity so if somebody could ...
-1
votes
3answers
225 views

Cpp function call from header file

There is two files one is .cpp file another is .h file , header file This class is present in .h file class DecodeTheCode { public: char* decodeCode(char* encodedString); }; now software which ...
2
votes
1answer
1k views

deprecated conversion from string constant to ‘char*’ in code [duplicate]

Possible Duplicate: C++ deprecated conversion from string constant to ‘char*’ I am getting "deprecated conversion from string constant to ‘char*’" error on gcc compiler at 3 places. When I ...
1
vote
0answers
302 views

Graph coloring topcoder [closed]

General program in which i have to find minimum number of color required to fill a 4x4 matrix in which some of the elements are already placed but condition is that no two adjacent(vertical ...
0
votes
3answers
287 views

Execution Time consumed by C++ program [closed]

I regulary practice on various online judge, and was wondering if there is some code which could tell me about time taken by my local work machine to process particular test case. i am looking for ...
0
votes
0answers
61 views

Finding a remote pair programmer for topcoder practice and general hacking. [closed]

What is a good place to find like minded people on the Internet to pair program with? I've tried searching on Google etc. with no results.
0
votes
2answers
102 views

Stopping condition for simple DFS traversing

I'm trying to solve this problem on topcoder as a practice , I tried implementing DFS solution for it , it works well except for a bug : it keeps traversing every unvisited cell even if it reached a ...
2
votes
1answer
704 views

How to start with dynamic programming? [closed]

Recently I started to enjoy solving algorithm problems. I don't have much time so I try to solve them during my daily home-work-home travel. Archive from TopCoder SRM Div2 is a great place to start ...
0
votes
1answer
197 views

codechef solution

I am currently doing this problem at codechef. I am getting "wrong answer" even after trying many times. Since its a type of competition I don't want any direct answer, but I am just wondering what ...
0
votes
0answers
228 views

How is the FlowerGarden pr0blem on TopCoder a DP-one?

I'm reading this excellent tutorial by Dumitru on DP based problems here. And I'm tying to come up with a DP based approach for the FlowerGarden problem mentioned in the list of 1D DP problems. I ...
1
vote
3answers
139 views

Where is the Segmentation Fault in this code?

Hello I'm an amateur programmer, and to make it worse it has been a while since I've done any programming so I decided to refresh my memory with some easy Topcoder problems. The first one I did ended ...
2
votes
2answers
240 views

How is this DP solution approached?

I have been trying to solve this TopCoder problem since a while now, and I'm not able to come up with a DP-based solution to this problem (given below). I also found a solution(also given below) by ...
6
votes
2answers
345 views

Why does this code work for this TopCoder prob?

I've been trying to think since HOURS about this TopCoder problem and couldn't come with a perfectly working solution and found the one given below that is insanely beautifully used! I'm trying to ...
0
votes
4answers
307 views

How to protect content in a webpage to avoid being copied like Codeforces.com? [duplicate]

Possible Duplicate: Disable copying data from webpage Most content in a webpage could be copied and pasted in other programs. How to protect it to avoid being copied? For example, a kind ...
1
vote
1answer
285 views

USACO number triangle - Execution error

The question is as follows Consider the number triangle shown below. Write a program that calculates the highest sum of numbers that can be passed on a route that starts at the top and ends somewhere ...
4
votes
1answer
503 views

TopCoder solution with dynamic programming solution

I'm trying to solve this topcoder problem. I have read the solution analysis but still cannot understand. The basic idea of the solution is to think backwards and insert element instead of deleting. ...
1
vote
1answer
443 views

Can not run topcoder arena on Mac

I can not run topcoder arena on my Mac.. When I try to login topcoder from safari, it says Java not found. So I download the .jnlp....but still can not run Here is my Java version: java -version ...
1
vote
3answers
618 views

C++: What error in using STL vector

I was using the topcoder C++ compiler, and although this code just run fine in Linux gcc, the topcoder compiler gave this error: your code did not compile: errors compiling: Your class or method ...
15
votes
6answers
969 views

What number remains after repeatedly eliminating perfect squares?

I was practicing SRM Problems in Topcoder.I came across this problem Problem Statement: Today is the Christmas Eve. People around the world celebrate this holiday. The following story takes ...
7
votes
5answers
456 views

Old Top Coder riddle: Making a number by inserting +

I am thinking about this topcoder problem. Given a string of digits, find the minimum number of additions required for the string to equal some target number. Each addition is the equivalent of ...
1
vote
2answers
182 views

Big O for this code

Below code is from topcoder website. I was trying to figure the time complexity for this code. There is 1 for loop and 1 while loop in the method isRandom and 1 for loop in the method diff. I guess ...
7
votes
3answers
861 views

How to spot a “greedy” algorithm?

I am reading a tutorial about "greedy" algorithms but I have a hard time spotting them solving real "Top Coder" problems. If I know that a given problem can be solved with a "greedy" algorithm it is ...
4
votes
3answers
923 views

Why is insertion sort faster than quick-sort and bubble-sort for small cases?

I recently read an article that talked about the computation complexity of algorithms. The author mentioned "why insertion sort is faster than quick-sort and bubble-sort for small cases". Could ...
6
votes
4answers
531 views

Triangle fit inside another triangle

Given the lengths of the sides of 2 triangles. Determine if the second triangle can fit inside the first triangle? For more detailed info read the full problem statement below: ...
1
vote
2answers
1k views

View others code on topcoders

I want to start writing code in topcoder, but I am just a beginner in c++ and some of the questions out there are real tough. I have read that it is possible to view others code after the contest. I ...
0
votes
4answers
183 views

Does this snippet of code(a macro for container traverse) works? if yes, why?

Following Dmitry Korolev tutorial on TopCoder i encountered this generic-container-traverse macro: #define tr(c,i) for(typeof((c).begin() i = (c).begin(); i != (c).end(); i++) It confuses me ...
1
vote
1answer
282 views

TopCoder FourBlocks problem

The code below is an answer to a popular topcoder problem FourBlocks(You need to log in). The solution uses bitmask memoization to find the max sum in the grid using blocks of size 1 and a square ...
3
votes
4answers
1k views

TopCoder algorithm problem - how to make progress on this one?

I've recently joined TopCoder and have been practicing in the Practice Rooms for the last few days. I came across this problem which I cant seem to solve. Any help will be appreciated. The problem ...
0
votes
5answers
590 views

Determine if all digits of the sum of n and swapped n are odd

I need to determine if all the digits of the sum of n numbers and swapped n are odd. For example: 36 + 63 = 99 (9 and 9 are both odd) 409 + 904 = 1313 (1 and 3 are both odd) Visual Studio builds ...
5
votes
1answer
692 views

How does TopCoder evaluates code?

If you are familiar with TopCoder you know that your source-code gets a final "grade/points" this depends on time, how many compiles, etc, one of the highest weighted being performance. But how can ...
1
vote
5answers
2k views

Is it ethical to post my TopCoder solutions to my blog?

I recently joined TopCoder and have been solving a few problems on the site. Now, I want to publicly post my solutions onto my blog and have others go over it, suggest improvements, better design, ...