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

Автор qwertsboy1234, история, 3 года назад, По-английски

Many codes are going to fail system test today for the problem B of contest Codeforces round 717.Its my prediction,let's see what happens.

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

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

Nice

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

gg :(

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

orz

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

What if you are mohammedehab2002's alt account and you knew pretests were weak? :)

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

I'm curious to know what motivated you to picking problem B as that special problem

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

    This seems to always happen with bruteforce range condition problems, as people always submit cheese sols. But perhaps there is something more?

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

      I failed it(I qualify as a cheese sol writer)can you tell me how not to approach such questions or how to do so. What to avoid and all.

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

    In my case, I mistakenly wrote a[i] in place of a[j] at one place and still my code passed pretest 2 and 3.

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

    The reason i came to know because usual b problems for which answer is boolena type i.e yes or no 10^4 test cases are checked,but today only 5 test setseach having maximum 15 with 1 having just 2 test cases thus total mybe max 62 which is very very very less number of test cases to be checked for boolean type problems.

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

CF FST-Predictor

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

I initially thought that Xor of array should be 0. I got wrong answer on pretest 3. I was thinking of a counter case and then realize of a countercase like this and corrected myself:

4

3 3 3 0

Guess what the above case was the hack XD.

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

That is why I did stress testing already.