LRU

While creating high loaded systems one should pay a special attention to caching. This problem will be about one of the most popular caching algorithms called LRU (Least Recently Used).

Suppose the cache may store no more than k objects. At the beginning of the workflow the cache is empty. When some object is queried we check if it is present in the cache and move it here if it’s not. If there are more than k objects in the cache after this, the least recently used one should be removed. In other words, we remove the object that has the smallest time of the last query.

Consider there are n videos being stored on the server, all of the same size. Cache can store no more than k videos and caching algorithm described above is applied. We know that any time a user enters the server he pick the video i with probability p i. The choice of the video is independent to any events before.

The goal of this problem is to count for each of the videos the probability it will be present in the cache after 10100 queries.

Input

The first line of the input contains two integers n and k (1 ≤ k ≤ n ≤ 20) — the number of videos and the size of the cache respectively. Next line contains n real numbers p i (0 ≤ p i ≤ 1), each of them is given with no more than two digits after decimal point.

It’s guaranteed that the sum of all p i is equal to 1.

Output

Print n real numbers, the i-th of them should be equal to the probability that the i-th video will be present in the cache after 10100 queries. You answer will be considered correct if its absolute or relative error does not exceed 10 - 6.

Namely: let’s assume that your answer is a, and the answer of the jury is b. The checker program will consider your answer correct, if  .

Examples

input

3 1
0.3 0.2 0.5

output

0.3 0.2 0.5 

input

2 1
0.0 1.0

output

0.0 1.0 

input

3 2
0.3 0.2 0.5

output

0.675 0.4857142857142857 0.8392857142857143 

input

3 3
0.2 0.3 0.5

output

1.0 1.0 1.0 

Solution:

#include <bits/stdc++.h>

using namespace std;

const int N = 2345678;

double real_p[123], p[123];
double f[N];
double ans[123];
int id[123];
int kb[N];

int main() {
int real_n, k;
scanf("%d %d", &real_n, &k);
int n = 0;
for (int i = 0; i < real_n; i++) {
    scanf("%lf", real_p + i);
    if (real_p[i] > 1e-4) {
id[n] = i;
p[n++] = real_p[i];
}
}
k = min(k, n);
kb[0] = 0;
for (int t = 1; t < (1 << n); t++) {
    kb[t] = kb[t & (t - 1)] + 1;
  }
  for (int t = 0; t < (1 << n); t++) {
    f[t] = 0.0;
  }
  for (int i = 0; i < real_n; i++) {
    ans[i] = 0.0;
  }
  f[0] = 1.0;
  for (int t = 0; t < (1 << n); t++) {
    if (kb[t] == k) {
      for (int j = 0; j < n; j++) {
        if (t & (1 << j)) {
          ans[id[j]] += f[t];
        }
      }
      continue;
    }
    double total = 0;
    for (int j = 0; j < n; j++) {
      if (t & (1 << j)) {
        continue;
      }
      total += p[j];
    }
    double q = f[t] * 1.0 / total;
    for (int j = 0; j < n; j++) {
      if (t & (1 << j)) {
        continue;
      }
      f[t | (1 << j)] += p[j] * q;
    }
  }
  for (int i = 0; i < real_n; i++) {
    if (i > 0) {
putchar(' ');
}
printf("%.17f", ans[i]);
}
printf("\n");
return 0;
}