Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 642585
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T21:11:22+00:00 2026-05-13T21:11:22+00:00

How can the following simple implementation of sum be faster? private long sum( int

  • 0

How can the following simple implementation of sum be faster?

private long sum( int [] a, int begin, int end ) {
    if( a == null   ) {
        return 0;
    }
    long r = 0;
    for( int i =  begin ; i < end ; i++ ) {
       r+= a[i];
    }
    return r;
}

EDIT

Background is in order.

Reading latest entry on coding horror, I came to this site: http://codility.com which has this interesting programming test.

Anyway, I got 60 out of 100 in my submission, and basically ( I think ) is because this implementation of sum, because those parts where I failed are the performance parts. I’m getting TIME_OUT_ERROR’s

So, I was wondering if an optimization in the algorithm is possible.

So, no built in functions or assembly would be allowed. This my be done in C, C++, C#, Java or pretty much in any other.

EDIT

As usual, mmyers was right. I did profile the code and I saw most of the time was spent on that function, but I didn’t understand why. So what I did was to throw away my implementation and start with a new one.

This time I’ve got an optimal solution [ according to San Jacinto O(n) -see comments to MSN below – ]

This time I’ve got 81% on Codility which I think is good enough. The problem is that I didn’t take the 30 mins. but around 2 hrs. but I guess that leaves me still as a good programmer, for I could work on the problem until I found an optimal solution:

Here’s my result.

my result on codility

I never understood what is those “combinations of…” nor how to test “extreme_first”

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T21:11:22+00:00Added an answer on May 13, 2026 at 9:11 pm

    I don’t think your problem is with the function that’s summing the array, it’s probably that you’re summing the array WAY to frequently. If you simply sum the WHOLE array once, and then step through the array until you find the first equilibrium point you should decrease the execution time sufficiently.

    int equi ( int[] A ) {
        int equi = -1;
    
        long lower = 0;
        long upper = 0;
        foreach (int i in A)
            upper += i;
    
        for (int i = 0; i < A.Length; i++)
        {
            upper -= A[i];
            if (upper == lower)
            {
                equi = i;
                break;
            }
            else
                lower += A[i];
        }
    
        return equi;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

it is the problem, i can't undertand anyway. i have the following simple script
I have following simple code def fib(i:Long,j:Long):Stream[Long] = i #:: fib(j, i+j) (0l /:
Consider the following simple polymorphism ... class Parent { public: someFunc() { /* implementation
What is equivalent pythonic implementation for the following simple piece of code in Matlab.
How can you use the following sample data either with a foreach or while
In Ruby 1.9, I can use its class variable like the following: class Sample
Can anyone provide a working sample code to convert following Oracle DB table with
i came across a sample gdbinit file, which was having following statements. can anyone
How can the following function be implemented in various languages? Calculate the (x,y) point
How can the following code be modified to run my insert statements 100 at

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.