StarSilk's blog

By StarSilk, history, 14 months ago, In English

The interactor of problem 1815B can be made TLE.

Select a case that n>800,add O(n) random x between n/2 and 3n/2, and query n random pairs of nodes.As there are O(n^2) edges in the graph, it takes O(n^2) time to bfs and O(n^3) time for the interactor to answer all queries.

Submission:https://codeforces.com/contest/1815/submission/201700734

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

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

lmao