Emilbek's blog

By Emilbek, history, 9 years ago, In English

AtCoder Beginner Contest 061 will be held.

Time: May 13th (Saturday), 21:00 JST

Duration: 100 minutes

Number of Tasks: 4

writer: Hec

Rating: 0-1199

The point values are: 100 — 200 — 300 — 400

We are looking forward to your participation!

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

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

Please inform me about the contest's difficulty. Is it suitable for div. 2 ?

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

How to solve D ?

My idea was to make all the weights negative, and then apply Bellman Ford. If there was any negative cycle the answer would be "inf", else "-1 * dist[N]".

However, i got WA on the last 3 cases. Any help where am i wrong?