Divide and conquer problem

I have wrote the same code as shown in video but it is showing tle
#include
#include
using namespace std;

bool isPossible(int ar[], int n, int m, int curr_min)
{
int studentUsed = 1;
int pages_reading = 0;
for(int i=0;i<n;i++)
{
if(pages_reading + ar[i] > curr_min)
{
studentUsed++;
pages_reading = ar[i];
if(studentUsed >m)
return false;
}
else{
pages_reading += ar[i];
}
}
return true;
}
int findPage(int ar[], int n, int m)
{
long long sum =0;

if(n<m){
    return -1;
}

for(int i=0;i<n;i++)
    sum += ar[i];
// count the no of pages
int s = ar[n-1];
int e = sum;
int ans = INT_MAX;

while (s<=e)
{
    int mid = (s+e)/2;
    
    if(isPossible(ar,n,m, mid))
    {
        ans = min(ans, mid);
        e - mid-1;
    }
    else
    {
        // it is not possible to divide the array at x
        s = mid+1;
    }
    

}
return ans;

}

int main()
{
int t;
cin>>t;

for(int i=0;i<t;i++)
{
    int n, m;
    cin>>n>>m;
    int ar[1000];
    for(int i=0;i<n;i++)
        cin>>ar[i];
    cout<<findPage(ar, n, m)<<endl;
}

return 0;

}

hello @Nitishkumar9711

it should be e=mid-1;

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.