لینک‌های مفید برای شرکت در مسابقه:

توجه کنید که سوالات مسابقه ترتیب خاصی ندارند.

می‌توانید سوالات خود را از قسمت "سوال بپرسید" مطرح کنید.

J: Ceremony



For the grand opening of the algorithmic games in NlogNsglow, a row of tower blocks is set to be demolished in a grand demonstration of renewal. Originally the plan was to accomplish this with controlled explosions, one for each tower block, but time constraints now require a hastier solution.

To help you remove the blocks more rapidly you have been given the use of a Universal Kinetic / Incandescent Energy Particle Cannon (UKIEPC). On a single charge, this cutting-edge contraption can remove either all of the floors in a single tower block, or all the xx-th floors in all the blocks simultaneously, for user’s choice of the floor number xx. In the latter case, the blocks that are less than xx floors high are left untouched, while for blocks having more than xx floors, all the floors above the removed xx-th one fall down by one level.

Given the number of floors of all towers, output the minimum number of charges needed to eliminate all floors of all blocks.

Input🔗

The first line of input contains the number of blocks nn, where 2n1000002 \le n \le 100 000. The second line contains nn consecutive block heights hih_i for i=1,2,...,ni = 1, 2, ..., n, where 1hi10000001 \le h_i \le 1 000 000.

Output🔗

Output one line containing one integer: the minimum number of charges needed to tear down all the blocks.

Sample Input 1🔗

6
2 1 8 8 2 3
Plain text

Sample Output 1🔗

5
Plain text

Sample Input 2🔗

5
1 1 1 1 10
Plain text

Sample Output 2🔗

2
Plain text

راهنمایی ۱

فرض کنید ما فقط می‌توانیم تعدادی طبقه حذف کنیم. در این صورت با کمی بررسی در می‌یابیم که حداقل تعداد حرکت لازم برای از بین بردن کل بلوک‌ها، برابر با ارتفاع بلند‌ترین برج ماست.


راهنمایی ۲

حال به حل مسئله می‌پردازیم. بدون لطمه خوردن به کلیت مسئله فرض کنید اول تمام ستون‌ها و سپس تمام طبقات موردنظر را حذف می‌کنید. در این صورت پس از حذف ستون‌ها، طبق راهنمایی یک تعداد حرکات شما برابر با ارتفاع بلندترین برج است.

بنابراین بهینه‌ترین حالت ممکن این است که اگر می‌خواهیم دقیقا kk ستون حذف کنیم،‌ آن kk ستونی را حذف کنیم که بیشترین ارتفاع را دارند. در این حالت تعداد حرکات ما برابر است با kk + ارتفاع k+1k + 1 امین بلندترین برج. (kk حرکت برای حذف کردن kk تا بلندترین برج و ارتفاع k+1k+1 امین برج برای حذف گردن بقیه)

به دست آوردن مقادیر بالا به ازای هر kk، پس از مرتب‌سازی برج‌ها بر اساس ارتفاعشان به سادگی امکان‌پذیر است.

ارسال پاسخ برای این سؤال
در حال حاضر شما دسترسی ندارید.