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

Saturday, February 1, 2014

KURUK14-GENIE SEQUENCE

GENIE SEQUENCE

below given solution is for  kuruk14 spoj or genie sequence spoj.
#include <stdio.h>
#include <cstdlib>
using namespace std;
int main()
{
 int t;
 scanf("%d",&t);
 while(t--)
 {
  int n,i,temp,flage=1;
  scanf("%d",&n);
  int *a;
  a=(int*)calloc(n+1,sizeof (int));
  for(i=0;i<n;i++)
  {
   scanf("%d",&temp);
   if(temp==n-1 && a[0]==0)
    a[0]=1;
   else if(a[temp]==0)
    a[temp]=1;
   else if(a[temp]==1 && a[n-1-temp]==0)
    a[n-1-temp]=1;
  }
  for(i=0;i<n;i++){
   if(a[i]==0){
    flage=0;
    break;
   }
  }
  if(flage==0)
   printf("NO\n");
  else
   printf("YES\n");
 }
 return 0;
}

No comments:

Post a Comment

Your comment is valuable to us