Here you will find solutions of many problems on spoj. If you want solution of some problem which is not listed in blog or have doubt regarding any spoj problem (which i have solved) or any programming concept (data structure) you can mail me @ raj.nishant360@gmail.com

And my humble request to you all that don't copy the code only try to understand the logic and algorithm behind the code. I have started this because if you tried as hard as you can and still can't find any solution to the problem then you can refer to this.
You can read my answer how to start competitive programming CLICK HERE

Friday, February 28, 2014

ABSP1-abs(a-b) I

abs(a-b) I

below given code is for ABSP1 spoj or abs(a-b) I spoj
#include <stdio.h>
#include <iostream>
using namespace std;
int main()
{
   int t;
   scanf("%d",&t);
   while(t--)
   {
       int n,i;
       scanf("%d",&n);
       int a[n+9];
       for(i=0;i<n;i++)
           scanf("%d",&a[i]);
       long long sum=0;
       for(i=0;i<n/2;i++)
       {
            sum+=((n- 2*i -1)*(a[n-i-1] - a[i]));
       }
       printf("%lld\n",sum);
    }
    return 0;
}

No comments:

Post a Comment

Your comment is valuable to us