Comments
+1

Someone please explain the solution of problem C using Rabin-Karp hashing...

I think I didn't forget that... I sorted the volume and when I am updating the seg_tree of for index i then I checked the indices less than i in the sorted list. :(

By the way, let me check again...

sorry I didn't notice the word "strictly" ... my bad...

Problem D: Can someone tell me if my algorithm is correct? I think there is some mistake in the coding...

my submission: 16248599

Getting wrong answer in Problem E on 53 no test case... Can't see the test case... Can anyone help me? Here is my submission: 11946047

Problem: Hack it. (Solution 4)

Can someone explain this please...? "That means if we shift the interval [x + 1, x + 10^18] by 1, the result will be increase by 1 too."

How can i calculate g(x). I mean the summation digits of numbers from 1 to x...?

On NickolasProblemsetter's Memoir, 12 years ago
0

As I have no experience on setting contest, would you please tell me what can I do If I have just the problem ideas?

On ikarTutorial Good Bye 2013, 12 years ago
0

How can I obtain s1 and s2?

+1

@ m3kAnix

Explanation of problem (div2)B: Let's see an example. The input string is "abc" and the value of k is 5. Now we have to check all possible string for tandem repeat. New length of the string is 3+5=8. so let's assume our new string "abc?????" now when we check for tandem repeat and we encounter position 1 and position 4 we get 'a' and '?' .We take that as a match. if we encounter 'b' and '?' then we also take that as a match. '?' can be any character, that's the point.