By PavelKunyavskiy, history, 4 years ago, In English
Tutorial is loading...
Tutorial is loading...
Tutorial is loading...
Tutorial is loading...
Tutorial is loading...
Tutorial is loading...
Tutorial is loading...
Tutorial is loading...
Tutorial is loading...
  • Vote: I like it
  • +59
  • Vote: I do not like it

| Write comment?
»
4 years ago, # |
  Vote: I like it +194 Vote: I do not like it

Maybe you need to improve your English.

  • »
    »
    4 years ago, # ^ |
    Rev. 2   Vote: I like it +6 Vote: I do not like it

    Russian statement and editorial is full of typos and silly mistakes as well, so I think author should either buy a new keyboard or learn to type... (Or maybe stop using google translate)

»
4 years ago, # |
  Vote: I like it 0 Vote: I do not like it

We need codes also!

»
4 years ago, # |
  Vote: I like it 0 Vote: I do not like it

In problem F you may observe that one of primitive roots in nimber field of size $$$2^{2^k}$$$ is $$$2^{2^k}-1$$$ so you may precalculate some of its powers beforehand to further simplify BSGS-algorithm and take discrete logarithm with base being a primitive root. If you do so, you won't need to develop tricky multiplication algorithm as $$$64^2$$$ algo with precalc for powers of two would be enough.

»
4 years ago, # |
  Vote: I like it 0 Vote: I do not like it

Can you give a better explanation for the optimization of problem (A. Recommendations)? I got to the O(n^2) solution during the contest but couldn't improve it.

»
4 years ago, # |
  Vote: I like it 0 Vote: I do not like it

Can you please explain more on how to improve the complexity of A.Recommendations from N^2 to Nlogn.

  • »
    »
    4 years ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    I have used heap and greedy approach 71716787

    First i have put all unique elements in a dictionary with list of values.

    Then i keep a temp list to store all the list and pop one largest element to keep in that position and others increase one position and carry on doing this till temp is empty , time complexity — O(N) + N*O(log(N))

»
4 years ago, # |
  Vote: I like it 0 Vote: I do not like it

Can someone tell me why my solution for Div1A/Div2D will TLE? I think its time complexity is nlogn.

»
4 years ago, # |
  Vote: I like it 0 Vote: I do not like it

Can anyone please explain more about the problem 1310B. thanks in advance.

»
3 years ago, # |
  Vote: I like it 0 Vote: I do not like it

Can anyone pls tell me what is wrong with my code? It gives the correct output with my editor. Solution Code: 97113733

»
2 years ago, # |
  Vote: I like it 0 Vote: I do not like it

Problem $$$D$$$ is so cool! My favorite 2300 problem I've ever solved (and I've solved 56 problems of that rating).

»
8 months ago, # |
  Vote: I like it 0 Vote: I do not like it

The tutorial of the problem F seems like Pohlig–Hellman_algorithm.