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

Автор IceKnight1093, 8 месяцев назад, По-английски

We invite you to participate in CodeChef’s Starters 101, this Wednesday, 20th September, rated till Division-2 (ie. for users with rating < 2000).

Time: 8:00 PM — 10:00 PM IST

Read about the recent judge migration here.

Joining us on the problem setting panel are:

Written editorials will be available for all on discuss.codechef.com. Pro users can find the editorials directly on the problem pages after the contest. The video editorials of the problems will be available only to Pro users.

Also, if you have some original and engaging problem ideas, and you’re interested in them being used in CodeChef's contests, you can share them here.

Hope to see you participating.

Good Luck!

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

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

While migrating servers no one was creating problems?
I thought we can have multiple rounds which will be rated for all as there was enough time to create problems which can rated for all.

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

    If you think creating problems is easy, then why you don't create one?

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

      Have you ever commented about a player playing soccer or cricket or any other game that he should have done that and our favorite team would have won the match?
      Then the same thing can be commented on for you as well! You are not an expert in playing that game but still, you pass your opinion.

      At least have a basic common sense with you before commenting, just check the past contests there were almost regular rated contests for users till 6 star. So going by that reasoning, we could have a round rated till 6 star atleast, as they have not hosted any contest for around 2 months.

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

The Input Format in Split and ADD is wrongly mentioned.
The line of the test case contains, $$$N, L$$$ and $$$R$$$, but in the problem input format, $$$N$$$ and $$$K$$$ are mentioned!

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

Can we solve PIARQ using Mo's algorithm in $$$\mathcal{O}(n\sqrt{n})$$$ time?

It seems from the TL that we can, but my submission gives TLE.

Edit: I guess I should have set the block size to $$$600$$$, instead of $$$400, 500$$$. Bruh.

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

    Let nxt[i] and prv[i] be the next larger and previous smaller to i. Answer is max value of (prv[i]-l+1 + 1 + r-nxt[i]+1) over all i such that l <= prv[i] <= nxt[i] <= r. You can solve this offline using segtree.

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

      Thanks for another approach I can try that, though I still don't get why it TLEs.

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

    Me too thought of MO in contest but the time constraints were 1.5sec it might pass for 3sec or 4sec!

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

      I mean, I could have agreed with you, if the same thing hasn't passed after the contest, that too in 1 sec.

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

        Can you please provide a link to the identical submission that you had made during the contest?

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

          Sorry for the confusion, but by same thing I mean the same Mo's algorithm, I didn't mean the same submission. I have changed a variable after the contest.

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

A quick request: For future contests, please announce which divisions will be rated with more than eight hours' notice. Many contestants' decisions to participate could reasonably depend on whether the round will be rated, not just because they care about their rating but because (a) the fact that a round is rated for Div. 1 signals that there will be challenging problems targeted at high-level contestants and (b) rated rounds attract a higher-quality competition pool. Providing over a week's notice like Codeforces generally does for Div. 1 rounds would be ideal, but at the very least, contestants should be able to go to sleep the night before a contest knowing whether or not they should expect to participate in a rated round the next day.

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

deleted