POJ 3104 Drying binary

Source: Internet
Author: User

 

Question:

There are n pieces of clothing, each piece of ai water, natural air drying less than 1 per minute, while drying Less Than k per minute. Obtain the shortest time for all tasks.

Ideas:

Note that there is no natural drying during drying.

Can be understood as drying every minute (k-1) of water.

In this way, each dress loses 1 water every minute.

The minimum value of the binary enumeration.

 

# Include

 
  
# Define deusing namespace std; const int MAXN = 100000 + 10; int a [MAXN]; int n, k; bool OK (int x) {int t = 0; for (int I = n-1; I> = 0; I --) {if (a [I] <= x) break; else t = t + (a [I] + k-2-x)/(k-1); if (t> x) return false;} return true;} int main () {while (~ Scanf (% d, & n) {for (int I = 0; I

  

   

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.