Блог пользователя gyanendrarawat

Автор gyanendrarawat, история, 3 года назад, По-английски

Problem: 1424. G Years from Bubble Cup13 Final Round.

I couldn't find the editorials, but I found a solution(code), still I didn't get the logic behind it.Somebody help Thanks in advance :)

  • Проголосовать: нравится
  • 0
  • Проголосовать: не нравится

»
3 года назад, # |
  Проголосовать: нравится +3 Проголосовать: не нравится

The problem essentially goes:

You have people who live and die at certain years. In what year are the maximum amount of people alive?

To do this, make an array of pairs. The first pair has the year, and the second pair is a boolean, determing whether it is a death year or a birth year. Sort all years, create a variable which stores the maximum, and if you encounter a new max, store that current year. Then print out your year and your maximum.