15 Mar 2013

Random decreasing function_SOLVED

/*

CODECHEF
PROBLEM CODE : RDF

*/

#include <stdio.h>

inline int getn() 
{
  int n=0, c=getchar_unlocked();
  while(c < '0' || c > '9') 
      c = getchar_unlocked();
  while(c >= '0' && c <= '9')
      n = (n<<3) + (n<<1) + c - '0', c = getchar_unlocked();
  return n;
}

double a[100001][31] = {{0}};

int main()
{
int T = getn(), N, K, i,j;
a[2][1] = 0.5, a[3][1] = 1.0, a[3][2] = 1.0/6.0;
 
for(i = 4; i < 100001; i++) 
{
  for(j = 1; j <= 30 && j < i; j++)
   {
    if(j == 1) 
      a[i][j] = a[i-1][j] + 0.5;
    else a[i][j] = (a[i-1][j-1] + a[i-1][j]*(i-1))/(double)i;
    if(a[i][j] <= 1.0/500000.0) 
      break;
   }
}
while(T--)
 {
   N = getn(), K = getn();
   if(!K) 
     printf("%d\n",N);
   else if(K <= 30 && N > K) 
    printf("%.7lf\n",a[N][K]);
   else 
    printf("0\n");
  } 

return 0;
}

Categories: , , ,

Related Posts:

  • ugly_number /*program to generate nth ugly number Ugly numbers are numbers whose only prime factors are 2, 3 or 5. The sequence 1, 2, 3, 4, 5, 6, 8, 9, 10, 12, 15, ... shows the first 11 ugly numbers. By convention, 1 is includ… Read More
  • Switch_AREA /*  Program to compute area of square, rectangle and circle.... */ #include<stdio.h>int main(){int a;float l,b;printf("\n******MENU*****");printf("\n1.Square \n2.Rectangle \n3.Circle\n");scanf("%d",&a);swi… Read More
  • Pattern_pyramid /* program to print the following pattern....         &       &   &     &       &  … Read More
  • Check_CHAR(alpha,num) /* program to check given character is alphabet, digit or any other character */ #include<iostream.h>#include<conio.h> int main(){    char a;    cout <<"Ente… Read More
  • Pattern_nested LOOP /* program to generate following pattern......     *    ***   *****  ******* *********  */ #include<iostream.h>#include<conio.h>  void main(){clrscr(); … Read More

0 comments:

Post a Comment

Copyright © 2025 UPgradeCODING | Powered by Blogger