Пожалуйста, подпишитесь на официальный канал Codeforces в Telegram по ссылке https://t.me/codeforces_official. ×

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

Автор ken_love_rin, история, 9 лет назад, По-английски

can you help me?

You are given an array of N integers. Find a consecutive subsequence of numbers of the length at least K that has the maximal possible average. Please note: the average of a subsequence is the sum of all the numbers in the subsequence divided by its length. INPUT The first line of input contains two integers N (1 6 N 63 · 105) and K (16 K 6 N). The second line of input contains N integers ai (16 ai 6106). OUTPUT The first and only line of output must contain the maximal possible average. An absolute deviation of ±0.001 from the official solution is permitted. SCORING In test cases worth 30% of total points, it will hold that N is not larger than 5000. SAMPLE TESTS

input
  6 3 
  7 1 2 1 3 6
  output
  3.333333
  • Проголосовать: нравится
  • +3
  • Проголосовать: не нравится

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

Auto comment: topic has been updated by ken_love_rin (previous revision, new revision, compare).

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

Binary search the answer. You need to answer the question: is there a subsequence of length at least K that has average  ≥ x. Now the condition is equivalent to (a1 - x) + (a2 - x) + ... + (aL - x) ≥ 0. So now transform each of the elements of your sequence to ai - x and find if there is a subsequence of length at least K that has a positive sum.

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

There was a problem on USACO which has very similar solution link

editorial

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

You can solve this problem with (binary search)+(partial sum)+(math) firstly we can select x use with binary search then (a1...aL)/L>=x (a1...aL)-(LX)>=0 (a1-x)+(a2-x)...+(aL-x)>=0 then you will be find at least k length sum of numbers will be greater and equal than 0 You can do this operation with partial sum Then you can solve this problem!!!