Created
July 11, 2016 13:48
-
-
Save vectorman1/e0f74584140ae56f77c084b03d3532fd to your computer and use it in GitHub Desktop.
Kozichki :)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <cstdio> | |
#include <vector> | |
#include <algorithm> | |
using namespace std; | |
vector<int> sheep; | |
bool cr(const int a, const int b) | |
{ | |
return a > b; | |
} | |
int getTravels(int size) | |
{ | |
vector<int> boats; | |
int i, j; | |
for( i = 0; i < sheep.size(); i++ ) | |
{ | |
for( j=0; j < boats.size(); j++ ) | |
{ | |
if( boats[j] + sheep[i] <= size) | |
{ | |
boats[j] += sheep[i]; | |
break; | |
} | |
} | |
if( j == boats.size() ) | |
{ | |
boats.push_back(sheep[i]); | |
} | |
} | |
return boats.size(); | |
} | |
int up, down, middle, res; | |
int n, i, k; | |
int main() | |
{ | |
scanf("%d %d", &n, &k); | |
sheep.resize(n); | |
for(i=0;i<n;i++) | |
{ | |
scanf("%d", &sheep[i]); | |
up += sheep[i]; | |
} | |
sort(sheep.begin(), sheep.end(), cr); | |
down = sheep[0]; | |
while( up > down ) | |
{ | |
middle = (up+down) / 2; | |
res = getTravels(middle); | |
if( res > k ) | |
{ | |
down = middle+1; | |
} | |
else | |
{ | |
up = middle-1; | |
} | |
} | |
middle = (up+down) / 2; | |
if( getTravels(middle) > k ) middle++; | |
printf("%d\n", middle); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment