Пожалуйста, прочтите новое правило об ограничении использования AI-инструментов. ×

Блог пользователя Errichto

Автор Errichto, 9 лет назад, По-английски

You can find editorial here. Sorry for technical troubles with challenging. What do you think about problems? Which did you enjoy, which do you hate?

--UPDATE--

broadcast: The match will be rated, and challenge results will stand. However, if you feel you were personally affected negatively/unfairly, please message [email protected], and I will consider individual requests. (I have some limited ability to confirm that individuals had issues)

  • Проголосовать: нравится
  • +55
  • Проголосовать: не нравится

»
9 лет назад, # |
  Проголосовать: нравится +7 Проголосовать: не нравится

I can't login to topcoder

»
9 лет назад, # |
Rev. 3   Проголосовать: нравится 0 Проголосовать: не нравится

Just in case admin did not read through chat:

There are at least me & fushar will be affected if the challenge phase is nullified: We used so much time in coding phase to create good challenge test. I think since D1 250 is not so easy to create challenge test, many other people may also be affected by this.

So if you decide to nullify challenge phase, please also consider making round unrated.

  • »
    »
    9 лет назад, # ^ |
    Rev. 8   Проголосовать: нравится +21 Проголосовать: не нравится

    I just used the following test for challenge case (which is not too hard to come up with?)

    (7, 109, 2·109). This works because the whole problem boils down to 2a ≡ 1( mod A + B) for some a (at least in brute force cycling solutions).

    Then 109 + 7 is great because the order of 2 is at least 5·108 + 3 (since this is prime too).

    Just a note: I will not get 100 and potentially even more if challenge is nullified. I was just giving this test case to everyone that was not doing binary pow, and if challenge phase was fast I would get many points for this. I predict that the issue was that the challenge cases were all causing TLE which can be annoying for the judge.

    • »
      »
      »
      9 лет назад, # ^ |
        Проголосовать: нравится +8 Проголосовать: не нравится

      I wanted to challenge solutions that calculate length of cycle of the transformation. It is not obvious to me how to easily create a test that has large cycle length.

  • »
    »
    9 лет назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    Both possible decisions (rated/unrated) aren't perfect. Sorry that it happened. We will try to choose the best option.

  • »
    »
    9 лет назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    I made a (probably?) good challenge test by throwing some powers of 2 to some numbers. The GCD is 1 and the sequence doesn't have a small period, so it should kill a lot of simulate-till-x solutions.

»
9 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Auto comment: topic has been updated by Errichto (previous revision, new revision, compare).

»
9 лет назад, # |
  Проголосовать: нравится +13 Проголосовать: не нравится

I liked the way how author avoided using float numbers in problem 550 div1 :)

  • »
    »
    9 лет назад, # ^ |
      Проголосовать: нравится +8 Проголосовать: не нравится

    Thanks. Otherwise, it would be enough to consider very short paths.

    • »
      »
      »
      9 лет назад, # ^ |
        Проголосовать: нравится +7 Проголосовать: не нравится

      Yeah, indeed preety clever. However there is also a second solution to problem of short paths which is giving float probabilites (almost) equal to 1 to nodes, however I prefer one you've chosen.

»
9 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

when i try to open the editorial from the link provided login request prompts. when i feed my details it shows system error. some help needed. thanks

»
9 лет назад, # |
  Проголосовать: нравится +3 Проголосовать: не нравится

Nice problems Errichto!

»
9 лет назад, # |
Rev. 4   Проголосовать: нравится 0 Проголосовать: не нравится

I faced problem in challenge. This solution passed for Div2B, I think its fail for testcase(498,480,483).And This solution got uncaught exeption, I think its for large memory , but it works fine my compiler.