Shayan's blog

By Shayan, history, 7 weeks ago, In English

1990A — Submission Bait

1990B — Array Craft

1990C — Mad MAD Sum

1990D — Grid Puzzle

1990E2 — Catch the Mole(Hard Version)

Not a formal proof! (please explain the formal proof of the algorithm in the comment section if you know that)

  • Vote: I like it
  • +2
  • Vote: I do not like it

»
7 weeks ago, # |
  Vote: I like it 0 Vote: I do not like it

Congrats for reaching 10K dude <3

»
7 weeks ago, # |
  Vote: I like it +18 Vote: I do not like it

Why video editorial?

  • »
    »
    7 weeks ago, # ^ |
      Vote: I like it +2 Vote: I do not like it

    text editorials take time to complete , besides Shayan does some clean coding too , so its nice in the mean time.

  • »
    »
    7 weeks ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    The authors will prepare the text editorial.

»
7 weeks ago, # |
  Vote: I like it 0 Vote: I do not like it

Can someone please explain problem D? I understood everything in the editorial up until adding the second dimension to the dp array. I don't get that part, why do we add dp[i][j] where j can be {0,1,2,3}? And is there a way to solve this without adding this second dimension?

»
7 weeks ago, # |
  Vote: I like it +3 Vote: I do not like it

Problem D can be solved using greedy: https://codeforces.net/contest/1990/submission/271628945

»
7 weeks ago, # |
  Vote: I like it +10 Vote: I do not like it

The "A.Submission Bait" problem really lives up to its name

»
7 weeks ago, # |
  Vote: I like it +3 Vote: I do not like it

Problem D greedy solution with just 2 variables and one for loop: 271663296

Idea/Solution
  • »
    »
    7 weeks ago, # ^ |
      Vote: I like it +1 Vote: I do not like it

    Same idea here, but tracking column indices instead: 271665697

  • »
    »
    7 weeks ago, # ^ |
      Vote: I like it -12 Vote: I do not like it

    trash ass solution. clearly codeforces is not for u lil bluh

    • »
      »
      »
      7 weeks ago, # ^ |
        Vote: I like it +2 Vote: I do not like it

      What didn't you like about it? Maybe we can improve if u tell us so.

»
7 weeks ago, # |
  Vote: I like it 0 Vote: I do not like it

Please add Russian subtitles to the video

»
7 weeks ago, # |
Rev. 2   Vote: I like it 0 Vote: I do not like it

Shayan, could you please answer this.... for Problem D, dp[i][j], j={0,1,2,3} what is the j here ? , is it {00,01,10,11} where each boolean value tell us about the use of the 1st and 2nd 2x2 block in i_th row ?

  • »
    »
    7 weeks ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    Exactly. It shows the 4 possible ways for the 1st and the 2nd 2*2 block in the row number i.

»
7 weeks ago, # |
  Vote: I like it 0 Vote: I do not like it

why is it getting downvoted?