ko_osaga's blog

By ko_osaga, history, 4 years ago, In English

I uploaded 2020 Petrozavodsk Winter Camp, Jagiellonian U Contest to the CF Gym.

The problemset was used in 2020 Petrozavodsk Winter Camp, and North America Programming Camp 2020. Both ghosts are in scoreboard, so it's a good opportunity to test your skills.

In the version used in PtzCamp and NAPC, problem K had a weak test and the model solution failed in my simple handcrafted tests. I just added that test, and changed the problem limit leniently to allow model solution to pass. I guess this made the problem much easier now.

Thanks to the problemsetters (I don't know who are them). Enjoy!

Editorial

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

| Write comment?
»
4 years ago, # |
  Vote: I like it +9 Vote: I do not like it

Seems like the link to the Editorial is just the problem statements.

»
4 years ago, # |
  Vote: I like it -18 Vote: I do not like it

Very interesting ... is the mystery figuring out where the problem statements disappeared to?

I can only see the titles and time limits.

»
4 years ago, # |
  Vote: I like it 0 Vote: I do not like it

For G, is it provable that there exists some permutation such that the lines will not cross given all xi, yi's are distinct, or are the test cases weak? (My solution here simply tries every permutation and outputs one which works)

»
4 years ago, # |
Rev. 3   Vote: I like it +8 Vote: I do not like it

In the sample test of problem J, why the answer for the second query is "YES"? I don't see any way to move from $$$(8, 1, 1)$$$ to $$$(3, 2, 2)$$$.

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

    $$$(8,1,1)\rightarrow (3,1,1)\rightarrow (3,1,2)\rightarrow (3,2,2)$$$

    • »
      »
      »
      4 years ago, # ^ |
        Vote: I like it 0 Vote: I do not like it

      Oh right... Guess that I just can't wrap my head around 3D problem.

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

Can problem H use min cost flow to solve?