Programming contests

DEIK Regionális Programozó Csapatverseny, középiskolai kategória, 2014. november 30.

November 30, 2014 10:30 AM – November 30, 2014 3:30 PM

Pizza voting

You are training for a programming contest with your team members Alice and Bob. After some hours of hard training, you want to have a break and eat pizza. You decided to order a big pizza for all three of you. But you have to choose the kind of pizza you want to eat.

You know your favorite kind. But Alice and Bob have other constraints: Alice is on a diet, so she wants a pizza with as few calories as possible. Bob is just mean to Alice, so he votes for as much calories as possible.

You decide to vote on which kind of pizza you order. As voting for one pizza wouldn’t lead anywhere, you decide to use a veto voting. So everyone of you veto on pizza in a round-robin manner. First Alice vetos one pizza, then Bob vetos one, at last you are allowed to veto. Then Alice has the next veto again, then Bob, etc., until only one pizza is left.

Reminder: Alice will always veto the pizza with the most calories. Bob always vetos the pizza with the least calories. You try to be clever in such a way that your favorite pizza is the remaining pizza.

Input Specification

The input starts with the number of pizzas n (1 ≤ n ≤ 100 000) and the index of your favorite pizza p (1 ≤ p ≤ n, 1-indexed). Then follow the descriptions of the n pizzas, each given in one line. Each description consists of one integer c (0 ≤ c ≤ 1 000 000) giving the calories, followed by a single word w giving the name of the pizza (up to 100 characters). The pizzas are ordered from low calories to high calories, and the number of calories is unique for every pizza.

Output Specification

Output one line with the word “YES” if you can vote in such a way that your pizza will be selected, or “NO” otherwise.

Sample Input 1

  1. 5 2
  2. 500 Margherita
  3. 600 Salami
  4. 700 Hawai
  5. 800 Speciale
  6. 900 Doener
download as text file

Output for Sample Input 1

  1. YES
download as text file

Sample Input 2

  1. 5 4
  2. 500 Margherita
  3. 600 Salami
  4. 700 Hawai
  5. 800 Speciale
  6. 900 Doener
download as text file

Output for Sample Input 2

  1. NO
download as text file
University of Debrecen; Faculty of Informatics; v. 03/01/2019