Having two TVs is great. Or it used to be in the 90s. Anyhow, the latest problem in CodeForces that I have resolved was concerning a guy with a schedule of TV shows, which he was planning to watch on his two TVs.
Polycarp is a great fan of television.
He wrote down all the TV programs he is interested in for today. His list contains n shows, i-th of them starts at moment li and ends at moment ri.
Polycarp owns two TVs. He can watch two different shows simultaneously with two TVs but he can only watch one show at any given moment on a single TV. If one show ends at the same moment some other show starts then you can’t watch them on a single TV.
Polycarp wants to check out all n shows. Are two TVs enough to do so?
The first line contains one integer n (1 ≤ n ≤ 2·105) — the number of shows.
Each of the next n lines contains two integers li and ri (0 ≤ li < ri ≤ 109) — starting and ending time of i-th show.
If Polycarp is able to check out all the shows using only two TVs then print “YES” (without quotes). Otherwise, print “NO” (without quotes).
The solution was advised to be made with a single sorted list, containing both the start and the end of the shows, with a flag indicating whether it is a start or an end. However, I liked the idea that there should be a way to solve the problem with two lists, one for starts and one for the ends of the show. And as far as I have two TVs in the problem, I am allowed to have maximum two positions from the end list, which are not before the positions in the start list. To maintain these positions, I have used a Queue (as far as I have not used it in quite a while) and at the end the solution was successful! 🙂
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 |
using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; class Startup { static void Main() { int n = int.Parse(Console.ReadLine()); List<int> liInput = new List<int>(); List<int> liStart = new List<int>(n); List<int> liEnd = new List<int>(n); bool blnResult = true; for (int i = 0; i < n; i++) { liInput = ReadLineAndParseToList(); int intLeft = liInput[0]; int intRight = liInput[1]; liStart.Add(intLeft); liEnd.Add(intRight); } liStart.Sort(); liEnd.Sort(); Queue<int> myQ = new Queue<int>(); for (int i = 2; i < n+2; i++) { int intLastB = liEnd[i-2]; myQ.Enqueue(intLastB); if (i != n + 1) { if (myQ.Peek() < liStart[i - 1]) { myQ.Dequeue(); } else if (myQ.Count == 2 && myQ.Peek() < liStart[i - 2]) { myQ.Dequeue(); } } else { if (myQ.Count == 2 && myQ.Peek() < liStart[i - 2]) { myQ.Dequeue(); } } if (myQ.Count>2) { blnResult = false; } } Console.WriteLine("{0}", blnResult ? "YES" : "NO"); } public static List<int> ReadLineAndParseToList() { return Console.ReadLine().Split().Select(int.Parse).ToList(); } } |
Cheers!