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

Автор tourist, 4 года назад, По-английски

Hey there!

During my last stream (link to YouTube), besides the expected SNSS Round 5, I did Codeforces Round 669 (Div. 2) virtually trying to explain most of my thoughts in the process. I'd say it went pretty well!

Tomorrow I'll hold another stream solving the most recent Codeforces Div. 2 rounds: Round 670 and Educational 95. I might also do today's AtCoder Beginner Contest 178.

I'm planning to go live right after Educational 95 finishes — that is, around 19:45 MSK.

A question is, given that I will do both Round 670 and Educational 95, which one should I do first? Vote here :)

As usual, the stream will be live on my Twitch, make sure to follow and get instant notifications. Stream recording will be posted to my YouTube afterwards.

See you!

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

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

It's definitely going to be interesting, it would be great if you could talk more and express your way of thinking

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

Live!

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

    You used mt19937 and debugged Div 2 669 D (Discrete Centrifugal Jumps).

    How you compared output of two different Programs without effort like storing both of them in different file by freopen then comparing both of them?

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

      This is the batch file (test.bat) I was using:

      @echo off
      gen >in
      sol <in >out
      stupid <in >ok
      fc out ok
      if errorlevel 1 exit
      test
      

      >out and >ok store outputs into files, fc compares them.