luogu_official's blog

By luogu_official, history, 3 months ago, In English

We will hold Luogu Round 198 on Luogu. This is a Div. 3 round and English statement will be provided officially.

We are looking forward to your participation! English statement will be provided officially. We are working on establishing an English platform, but it takes time. We plan to complete this task by the end of 2024 or early 2025.

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

»
3 months ago, # |
Rev. 2   Vote: I like it -19 Vote: I do not like it

Wow

  • »
    »
    3 months ago, # ^ |
      Vote: I like it -47 Vote: I do not like it

    I think using Chinese on CodeForces is not appropriate.

    • »
      »
      »
      3 months ago, # ^ |
        Vote: I like it -6 Vote: I do not like it

      Why? I thought codeforces is a platform for everyone.

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

        Because of the community rules.

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

          Which one? I read the rules but I didn't find "DO NOT USE CHINESE".

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

            Maybe you're right, there's nothing in the community rules about what language you have to use. But I have been warned for using Chinese. I think it is not allowed.

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

      Why this comment has got so many downvotes? I think I didn't do anything wrong.

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

        Why is most of the comments in this post downvoted? Is there anyone doing that on purpose?

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

Wow OwO... What's up for Tianyi today?

»
3 months ago, # |
  Vote: I like it -15 Vote: I do not like it

luogu really internationlize now XD

»
3 months ago, # |
  Vote: I like it -7 Vote: I do not like it

Luogu internationalization!

»
3 months ago, # |
  Vote: I like it +1 Vote: I do not like it

cute

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

As a tester,I like this round very much.

»
3 months ago, # |
  Vote: I like it -15 Vote: I do not like it

As a writer, give me contribution.

  • »
    »
    3 months ago, # ^ |
    Rev. 2   Vote: I like it -28 Vote: I do not like it

    You can farm contribution as tester or writer

    But don’t mention that. That’s inappropriate.

»
3 months ago, # |
  Vote: I like it -9 Vote: I do not like it

As a Luogu user, I think there are also many high-quality problems and contests in Luogu. Hope you guys like it XD

»
3 months ago, # |
  Vote: I like it -24 Vote: I do not like it

hp

»
3 months ago, # |
  Vote: I like it -7 Vote: I do not like it

Luogu actually brought the game to CF, it's unbelievable

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

Good luck to everyone

»
3 months ago, # |
  Vote: I like it -12 Vote: I do not like it

It'll be a great start!

»
3 months ago, # |
  Vote: I like it -8 Vote: I do not like it

Hope luogu become better!

»
3 months ago, # |
  Vote: I like it -8 Vote: I do not like it

Luogu will have bright future!

»
3 months ago, # |
Rev. 2   Vote: I like it -12 Vote: I do not like it

As we know,Usually a post for Q&A and a summary would be published in Luogu.I think Luogu should also post something like these on CodeForces for people from other countries

»
3 months ago, # |
Rev. 2   Vote: I like it -15 Vote: I do not like it

I'm looking forward to the start of the contest. The quality of the contest in Luogu is very good. I like it.

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

amazing

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

As a member in the team , the problems are very good especially A(it has a funny background). Is it allowed?

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

What is unknown error? Had to submit 5-6 times to judge one submission

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

    "You must submit your code at the Chinese version of the statement" It would help if you changed the statements to Chinese and then submit them. I got the same error when trying to submit solutions in English statements

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

can someone give link for upsolving? I can't find problems

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

I don't think the internationalization of luogu is a good idea,because it's almost impossible to turn everything into English.

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

For Problem D, My Construction was,

1. check if the graph is tree or disconnected.
2. find bridges in the graph.
3. color all the bridge nodes in the graph as black.
4. if there are remaining uncolored node, then color them as white.
5. else, if all the nodes are colored black, then there should a node which has degree 1. color that vertex as white and move up, until there is a node (u) having degree > 1. at last, color the node u as white.

this construction gives wrong answer.
can someone find a testcase on which this construction fails.

Thanks in Advance!