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

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

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.

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

»
20 месяцев назад, скрыть # |
Rev. 2  
Проголосовать: нравится -19 Проголосовать: не нравится

Wow

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

cute

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

As a tester,I like this round very much.

»
20 месяцев назад, скрыть # |
 
Проголосовать: нравится -15 Проголосовать: не нравится

As a writer, give me contribution.

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

Hope luogu become better!

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

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

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

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

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

    "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

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

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

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

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!