Maximum sum path in two ways

what’s wrong in my code

// C++ program to find maximum sum path
#include
using namespace std;

// Utility function to find maximum of two integers
int max(int x, int y) { return (x > y) ? x : y; }

// This function returns the sum of elements on maximum path
// from beginning to end
int maxPathSum(int ar1[], int ar2[], int m, int n)
{
// initialize indexes for ar1[] and ar2[]
int i = 0, j = 0;

// Initialize result and current sum through ar1[] and
// ar2[].
int result = 0, sum1 = 0, sum2 = 0;

// Below 3 loops are similar to merge in merge sort
while (i < m && j < n)
{
    // Add elements of ar1[] to sum1
    if (ar1[i] < ar2[j])
        sum1 += ar1[i++];

    // Add elements of ar2[] to sum2
    else if (ar1[i] > ar2[j])
        sum2 += ar2[j++];

    else // we reached a common point
    {
        // Take the maximum of two sums and add to
        // result
        // Also add the common element of array, once
        result += max(sum1, sum2) + ar1[i];

        // Update sum1 and sum2 for elements after this
        // intersection point
        sum1 = 0;
        sum2 = 0;

        // update i and j to move to next element of each array
        i++;
        j++;
    }
}

// Add remaining elements of ar1[]
while (i < m)
    sum1 += ar1[i++];

// Add remaining elements of ar2[]
while (j < n)
    sum2 += ar2[j++];

// Add maximum of two sums of remaining elements
result += max(sum1, sum2);

return result;

}

// Driver code
int main()
{
int t;
cin >> t;
for (int i = 0; i < t; i++)
{

    int m;
    int n;
    cin >> m >> n;
    int ar1[m];
    int ar2[n];

    for (int i = 0; i < m; i++)
    {
        cin >> ar1[i];
    }
    for (int i = 0; i < m; i++)
    {
        cin >> ar2[i];
    }
    // Function call
    
       cout<<  maxPathSum(ar1, ar2, m, n);
}
return 0;

}

@sahilkumar23102003_bbf6ee38349d98a1,
Send the code by saving in CB ide online

@sahilkumar23102003_bbf6ee38349d98a1 here’s the code if u have’nt implemented yet

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.

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.