#include <iostream>
using namespace std;
const int N=205;
long long n,k,x[N],y[N];
pair<long long,long long> f[N][N];
long long area(long long i,long long j,long long k) {
return (x[j]-x[i])*(y[k]-y[i])-(y[j]-y[i])*(x[k]-x[i]);
}
int main(){
cin>>n>>k;
for(int i=1;i<=n; i++) cin>>x[i]>>y[i];
long long l=0,r=1e17;
while(l<r){
long long mid=(l+r+1)>>1;
for(long long len=3;len<=n;len++){
for(long long i=1,j=len;j<=n;i++,j++){
f[i][j]={0,0};
for(long long k=i+1;k<j;k++){
long long a=f[i][k].first+f[k][j].first;
long long b=f[i][k].second+f[k][j].second+area(i,k,j);
f[i][j]=max(f[i][j],b>=mid?make_pair(a+1,0ll):make_pair(a,b));
}
}
}
f[1][n].first> k?l=mid:r=mid-1;
}
cout<<l<<endl;
return 0;
}
Cutting a material | Bubble Sort |
Number of triangles | AND path in a binary tree |
Factorial equations | Removal of vertices |
Happy segments | Cyclic shifts |
Zoos | Build a graph |
Almost correct bracket sequence | Count of integers |
Differences of the permutations | Doctor's Secret |
Back to School | I am Easy |
Teddy and Tweety | Partitioning binary strings |
Special sets | Smallest chosen word |
Going to office | Color the boxes |
Missing numbers | Maximum sum |
13 Reasons Why | Friend's Relationship |
Health of a person | Divisibility |
A. Movement | Numbers in a matrix |