sudddddd's blog

By sudddddd, 7 years ago, In English

Hello, I am a newcomer and unable to solve a problem on Educational Codeforces Round 3. Can anyone help me as I am getting wrong answer on test case 9. Thank You.

Problem Statement

My Code

Full text and comments »

  • Vote: I like it
  • 0
  • Vote: I do not like it

By sudddddd, history, 7 years ago, In English

Hello, this is my first problem on segment tree. I have used segment tree to solve this problem but I am getting Wrong Answer on a test case. Can you point out what is wrong. Thank you

Problem Statement

My Code

Full text and comments »

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

By sudddddd, history, 7 years ago, In English

How do we solve a problem in which arrival time and departure time of many flights are given (also source and destination of each flight are given) and we have to find the path between source and final destination which takes least time.

We also have to take care our waiting time for next flight(overall time should be minimised).

There are multiple flights possible from a destination.

X <= 500

N <= 4 * X * (X -1)

Where x is number of stations and N is total number of flights.

Time limit is 3s.

Eg.- Consider three stations (1,2,3), we have to go from 1 to 3.

flight 1 leaves station 1 at 10:30 and arrives at station 2 at 11:50.(time=80 min)

flight 2 leaves station 1 at 10:45 and arrives at station 2 at 12:15.(time=90 min)

flight 3 leaves station 2 at 12:30 and arrives at station 3 at 14:30.(time=120 min)

If we take flight 1 our total time spent = 80 + 40 (for waiting for flight 3) + 120 =240 min.

If we take flight 2 total time =90 + 15 + 120 = 225 min.

So finally we would take flight 2 and 3.

Full text and comments »

  • Vote: I like it
  • 0
  • Vote: I do not like it