atcoder_official's blog

By atcoder_official, history, 15 months ago, In English

We will hold AtCoder Beginner Contest 393.

We are looking forward to your participation!

  • Vote: I like it
  • -110
  • Vote: I do not like it

| Write comment?
»
15 months ago, hide # |
 
Vote: I like it 0 Vote: I do not like it

Why does this have so many downvotes?

  • »
    »
    14 months ago, hide # ^ |
    Rev. 3  
    Vote: I like it -15 Vote: I do not like it

    Judging by now, this ABC is likely to get a lot of downvotes in the future. (Reason: A~F is quite easy. But now no one passed G.)

    Update: A contestant passes G! Such a strong programmer!

»
15 months ago, hide # |
 
Vote: I like it +26 Vote: I do not like it

Hope this round can be harder and more interesting than last one. Please do not make standard problems any more!

Wish Atcoder Beginner Contest will not be 「AI Beat Contest」.

By the way, it seems AGC disappeared.

  • »
    »
    14 months ago, hide # ^ |
     
    Vote: I like it +7 Vote: I do not like it

    Wish AtCoder Beginner Contest won't be "AI Beat Contestant". Also, there's AGC071 on March 30th.

  • »
    »
    14 months ago, hide # ^ |
     
    Vote: I like it +33 Vote: I do not like it

    "Please do not make standard problems any more!"

    Why? As name of the contest suggests it's the contest for beginners. There is a rule against AI in ABC contests, so one shouldn't care about AI and just enjoy the problems

    • »
      »
      »
      14 months ago, hide # ^ |
       
      Vote: I like it 0 Vote: I do not like it

      Actually, if you do want to solve standard problems, you have many choices better than ABC.

      Most people, like me, just want to see more interesting and enjoyable problems in AT contests. These boring problems and more and more AI participations truly annoy me.

      • »
        »
        »
        »
        14 months ago, hide # ^ |
        Rev. 2  
        Vote: I like it +6 Vote: I do not like it

        I can say the same, if you want to solve interesting and enjoyable problems, you have many choices better than ABC. You should understand these "standard" problems aren't standard for beginners and this contest mostly designed for them

    • »
      »
      »
      14 months ago, hide # ^ |
       
      Vote: I like it +3 Vote: I do not like it

      I agree with you ! As a complete newbie to this platform, I am grateful such problems exist so that I too can reach the experienced level in the future just like others who find these problems easy or unexciting.

»
14 months ago, hide # |
Rev. 2  
Vote: I like it +12 Vote: I do not like it

Terrible speedcoder. Took <40min to AK Div 4 in disguise. The last problem is just extra...

Screenshot-from-2025-02-15-14-05-22

»
14 months ago, hide # |
 
Vote: I like it +52 Vote: I do not like it

If next ABC as shit as this, I will ban you.

»
14 months ago, hide # |
 
Vote: I like it +29 Vote: I do not like it

maybe we should call this: AI Beginner Contest

»
14 months ago, hide # |
 
Vote: I like it +18 Vote: I do not like it

it this a AI Beginner Contest?

  • »
    »
    14 months ago, hide # ^ |
     
    Vote: I like it 0 Vote: I do not like it

    We will hold AI Beginner Contest 393 for younger AI training.

  • »
    »
    14 months ago, hide # ^ |
    Rev. 2  
    Vote: I like it +3 Vote: I do not like it

    if they set non-AI solvable contest, it won't be ABC anymore. Why are you complaining? It's not authors fault that "contestants" don't follow the rules

»
14 months ago, hide # |
 
Vote: I like it 0 Vote: I do not like it

Who can hold a better contest on every Saturday evening?

Our coach orders us to take part in ABC.I want an other contest instead :(

»
14 months ago, hide # |
 
Vote: I like it -10 Vote: I do not like it

Oh, maybe G should be used in AHC, not ABC.

»
14 months ago, hide # |
 
Vote: I like it -14 Vote: I do not like it

ez ac ABCDEF,Im vegeableness

»
14 months ago, hide # |
Rev. 6  
Vote: I like it +1 Vote: I do not like it

The length of the solution is 30,000 characters!!!It's unbelievable!!!

Update:The problem is G.

»
14 months ago, hide # |
 
Vote: I like it 0 Vote: I do not like it

How G

»
14 months ago, hide # |
 
Vote: I like it +40 Vote: I do not like it

Looking at the editorial to G, I wanna kill myself.

»
14 months ago, hide # |
 
Vote: I like it +11 Vote: I do not like it

Terrible contest :( I would prefer quality over quantity if this is happening due to more frequent ABCs. Such contests are ruining the overall leaderboard as well.

»
14 months ago, hide # |
 
Vote: I like it +8 Vote: I do not like it

Why can not we use simplex method to solve problem G?

I haven't tried it yet, has anyone tried it?

  • »
    »
    14 months ago, hide # ^ |
     
    Vote: I like it +6 Vote: I do not like it

    Because they intentionally made simplex infeasible with uncanny error tolerance (as mentioned in the last sentence of the editorial). This is the best I got.

    • »
      »
      »
      14 months ago, hide # ^ |
       
      Vote: I like it 0 Vote: I do not like it

      Thank you for your response. I have carefully re-read the editorial for problem G. In fact, it said if the precision of the simplex solver is sufficiently high, it is possible to accept this problem. There is a publicly available high-precision simplex solver on the Universal Online Judge's simplex template problem. I plan to find some time to try using this solver to attempt to pass the problem.

»
14 months ago, hide # |
 
Vote: I like it -18 Vote: I do not like it

I believe G is too hard as an ABC G, but since ARC and AGC both focus on thinking, and AHC shouldn't contain problems solvable in deterministic time, I think it should take place as the hardest problem in an ICPC Contest.

IT SHOULDN'T APPEAR HERE!!!!!!

»
14 months ago, hide # |
 
Vote: I like it 0 Vote: I do not like it

I solved ABCDE lightning fast lol. Weren't they kind of really easy?

  • »
    »
    14 months ago, hide # ^ |
     
    Vote: I like it 0 Vote: I do not like it

    how did you solve E? I tried various factoring methods but couldn't figure it out.

    • »
      »
      »
      14 months ago, hide # ^ |
       
      Vote: I like it 0 Vote: I do not like it

      my solution is similar to sieve of eratosthenes

      • »
        »
        »
        »
        14 months ago, hide # ^ |
        Rev. 2  
        Vote: I like it 0 Vote: I do not like it

        I calculated the smallest prime divisor for each number in [1, 1e6] to be able to quickly factor any number in there. This precalculation is done in a sieve-like way. Then I go over all the elements of the array and factor it using the prime factorization computed using the sieve. Now I would have a map “cnt” from any factor in the range [1, 1e6] to how many elements in the array are divisible by that factor. Then, for some current i, we go over its factors and find the biggest one that has cnt >= k. But since this involves factorization, i guess the time is o(N*sqrt(A_i))

        • »
          »
          »
          »
          »
          14 months ago, hide # ^ |
           
          Vote: I like it 0 Vote: I do not like it

          since the maximum number is only 1e6, you don't need map to store them, an array with size 1e6 is enough, since each operation for map is O(logn) with a not small constant, and also the TL in this problem is tight.

          • »
            »
            »
            »
            »
            »
            14 months ago, hide # ^ |
             
            Vote: I like it 0 Vote: I do not like it

            Breh I don’t understand why this always happens with these factoring problems. I always shoot just above the time limit because of some small BS detail lol.

  • »
    »
    14 months ago, hide # ^ |
     
    Vote: I like it 0 Vote: I do not like it

    No. I solved ABCDF. I think E > F.

»
14 months ago, hide # |
 
Vote: I like it +10 Vote: I do not like it

We can classify ABC problems into two categories: 1. Standard / classical (a.k.a trash speedrun AI-friendly problems) 2. PHD level (you may encounter it once in your whole CP-career, not worth learning) In short, both are trash.

»
14 months ago, hide # |
 
Vote: I like it 0 Vote: I do not like it

how to solve F?

»
14 months ago, hide # |
Rev. 2  
Vote: I like it +1 Vote: I do not like it

Although I didn't like the contest much, I appreciate the effort on preparing the editorial for Problem G.

On a side note, is it a standard problem if we consider the total cost cannot exceed some non negative integer P (not sure about the bounds) and we can only choose some positive integer x in Problem G.

»
14 months ago, hide # |
 
Vote: I like it 0 Vote: I do not like it

AI Better Contest, huh?