#include <bits/stdc++.h>
using namespace std;
int L,N,m;
const int n=5e4+9;
int a[n];
int check(int mid)
{
int res=0;
int lst=0;
for(int i=1;i<=N;i++)
{
if(a[i]-a[lst]<mid)
{
res++;
continue;
}
lst=i;
}
if(L-a[lst]<mid) res++;
return res;
}
int main()
{
ios::sync_with_stdio(0),cin.tie(0);
cin>>L>>N>>m;
for(int i=1;i<=N;i++)
{
cin>>a[i];
}
long long l=0;
long long r=1e9+5;
while(l+1!=r)
{
long long mid=(l+r)/2;
if(check(mid)<=m)l=mid;
else r=mid;
}
cout<<l;
return 0;
}



