Almost always Not Constructive - try: http://codegolf.stackexchange.com/

learn more… | top users | synonyms

5
votes
6answers
135 views

Fastest method to generate big random string with lower Latin letters

I'm trying to solve this problem from Timus Online Judge. To solve this problem you need generate a sequence of 1 000 000 lowercase Latin letters and write it to stdin in 1 second. It is easy to ...
0
votes
1answer
113 views

How can I pass a substring by reference?

I call recursively a function passing as argument a substring which always starts from the beginning of the current string up to a position. If I was using C, I could pass the pointer to the first ...
0
votes
1answer
38 views

new letters of microsoft exams, products, mva etc [closed]

I would like to subscribe all microsoft updates for developers, latest products, latest offer, MVA(microsoft virtual academy) free exams or offers, or any programming contests, etc. Microsoft would ...
1
vote
1answer
145 views

Need Explanation to compute beauty of string

Here is a link of a Problem. As per the problem statement it is clear that beauty of a string is sum of its letters. And From The beauty of each letter is an integer between 1 and 26, inclusive, ...
1
vote
5answers
212 views

Optimizing C code [closed]

Suppose we have an array of numbers say {1,2,3} and we want to equalize the numbers in the least number of turns possible; where the definition of a "turn" is as follows: In a turn, you need to fix ...
0
votes
1answer
69 views

ACM MIPT - Graph existence puzzle - examples unclear

This is with reference to the 'graph existence' problem - http://acm.mipt.ru/judge/problems.pl?problem=110. Can someone explain why there is no tree in example 1 but there is a tree in example 2? In ...
0
votes
1answer
69 views

ACM MIPT - One rectangle - sample input 2 incorrect?

I am not clear about problem 15 (One rectangle) of ACM MIPT (http://acm.mipt.ru/judge/problems.pl?problem=015), specifically sample test case 2. Shouldn't the maximum rectangle for that case have area ...
0
votes
1answer
82 views

ACM programming - Arithmetica 1.0 - any additional operators?

Has anyone in this forum attempted to solve the ACM programming problem http://acm.mipt.ru/judge/problems.pl?browse=yes&problem=024? It is one of the simpler problems in ACM MIPT and the goal is ...
0
votes
1answer
129 views

I am difficulty with printing a newline

I am new to problem solving. And I was solving a problem in UVA called Expression. I think I have solved the problem because my code gives the correct output for every possible test case. But still I ...
2
votes
3answers
1k views

Fast input output function

#define getcx getchar_unlocked inline void inp( int &n )//fast input function { n=0; int ch=getcx();int sign=1; while( ch < '0' || ch > '9' ){if(ch=='-')sign=-1; ch=getcx();} ...
1
vote
0answers
548 views

Find longest common substring of multiple strings using factor oracle enhanced with LRS array

Can we use a factor-oracle with suffix link (paper here) to compute the longest common substring of multiple strings? Here, substring means any part of the original string. For example "abc" is the ...
6
votes
2answers
650 views

What is the fastest way to find/generate the n-th Motzkin number?

I want to generate all the Motzkin Number and store in an array. The formula is given as follows: My current implementation is just way too slow: void generate_slow() { mm[0] = 1; mm[1] = ...
9
votes
2answers
887 views

What is the fastest (known) algorithm to find the n-th Catalan number mod m?

The problem is to find the n-th Catalan number mod m, where m is NOT prime, m = (10^14 + 7). Here are the list of methods that I have tried: (max N = 10,000) Dynamic programming for table look-up, ...
2
votes
2answers
331 views

How to improve Dijkstra algorithm when querying n times?

I'm currently working on a problem at Codechef. You can find the problem statement here: Delivery Boy In short, the problem is asking to query n times the shortest path from a start to an end. My ...
0
votes
1answer
121 views

I/O optimization for Programming Constest

Is there any way to optimize the Input, in the case predefined input formats. Example problems : http://www.spoj.pl/problems/MARTIAN/ http://www.spoj.pl/problems/FISHER/ I can think of scanning ...
1
vote
3answers
506 views

Generating the lexicographically greatest string

The question is to generate the lexicographically greatest string given some string s. So the aim is to find lexicographically greatest, unique(no repetitions) substring s1 from s. We say that some ...
16
votes
2answers
374 views

How to speed up series generation?

The problem requires to generate the n-th element of a sequence that is similar to Fibonacci sequence. However, it's a bit tricky because n is very large (1 <= n <= 10^9). The answer then modulo ...
5
votes
3answers
2k views

How to get better at programming contests

I've been looking at contest problems for a while with the intention of getting into my university's ICPC team next year. Unfortunately I feel stuck and am not improving. I've been using the USACO ...
7
votes
6answers
667 views

Solving jumbled word puzzles with python?

I have an interesting programming puzzle for you: You will be given 2 things: 1. A word containing a list of english words put together : word = "iamtiredareyou" 2. Possible subsets: ...
0
votes
1answer
48 views

Is there a list somewhere of all the app dev contests and promotions going on? [closed]

If not... let's start one here? Please add below! StreetApps Challenge Adobe Open Screen Nokia 1 million API-based contests ConstantContact API Daylife API (Profit Share) And more?
1
vote
3answers
364 views

plane bombing problems- help

I'm training code problems, and on this one I am having problems to solve it, can you give me some tips how to solve it please. The problem is taken from here: ...
9
votes
11answers
2k views

C++ Programming Contests

I would like to test my C++ programming skill level by competing with others. What programming contests are there for C++?
1
vote
4answers
2k views

Can you answer this 2009 ACM International Collegiate Programming Contest Finals problem?

Out of curiosity, I was checking out the problem set to the 2009 ACM international collegiate programming contest. The questions are pretty interesting. They're available at ...
1
vote
1answer
1k views

Online programming competitions to improve programming skills [closed]

I am new to software development, and I have come across a wide variety of sites in which there are a large number of questions (SPOJ, TopCoder, Project Euler, CodeChef). But I want to know which ...
1
vote
3answers
432 views

Software Engineering/Application Development Contests

There are a few threads on SO that discuss coding contents & competitions. Unfortunately, many of them are either contrived problems, or based entirely on theory, math, and/or algorithms. Where ...
17
votes
9answers
4k views

Learning Algorithms: Never getting any better

I want to implement algorithms and data structures for practice. I have a bunch of textbooks I am working through and although I can understand the idea and theories I can never seem to close the book ...