D. Jon and Orbs
time limit per test

2 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

Jon Snow is on the lookout for some orbs required to defeat the white walkers. There are k different types of orbs and he needs at least one of each. One orb spawns daily at the base of a Weirwood tree north of the wall. The probability of this orb being of any kind is equal. As the north of wall is full of dangers, he wants to know the minimum number of days he should wait before sending a ranger to collect the orbs such that the probability of him getting at least one of each kind of orb is at least , where ε < 10 - 7.

To better prepare himself, he wants to know the answer for q different values of pi. Since he is busy designing the battle strategy with Sam, he asks you for your help.

Input

First line consists of two space separated integers kq (1 ≤ k, q ≤ 1000) — number of different kinds of orbs and number of queries respectively.

Each of the next q lines contain a single integer pi (1 ≤ pi ≤ 1000) — i-th query.

Output

Output q lines. On i-th of them output single integer — answer for i-th query.

Examples
input
1 1
1
output
1
input
2 2
1
2
output
2
2

题意:有k种球,每天可得到一个球,其种类是任意一种,问每种球至少有一个的概率至少为 (p<1000)需要几天。

自己只想到用概率去算,但是也不知对不对,几乎没有思路,于是看了官方题解。

思路:dp[i][j]:第i天有j种的概率。那么可以有dp[i][j]=dp[i-1][j]*(j/k)+dp[i-1][j-1]*(k-j+1)/k;

看了题解觉得很容易,但是自己却想不到啊。。。。。。。

#include<iostream>
#include<cstdio>
#include<cstring>
using namespace std;
#define N 10005
double dp[N][]; int main()
{
int k,q;
scanf("%d%d",&k,&q);
dp[][]=;
for(int i=; i<N; i++)
for(int j=; j<=k; j++)
dp[i][j]=dp[i-][j]*((double)j/k)+dp[i-][j-]*((double)(k-j+)/k);
while(q--)
{
double p;
scanf("%lf",&p);
int i;
for(i=; i<N; i++)
if(dp[i][k]>=(p/))
break;
printf("%d\n",i);
}
return ;
}

最新文章

  1. 全球首发免费的MySql for Entity Framework Core
  2. Flipping Bits in Memory Without Accessing Them: An Experimental Study of DRAM Disturbance Errors
  3. JS中iframe相关的window.self,window.parent,window.top
  4. 银行卡BIN码大全
  5. jgroups 入门
  6. java学习笔记_MIDI_GUI
  7. Angular2学习
  8. 解决 iOS webkit 使用CSS动画时闪烁的问题
  9. 使用python写appium用例
  10. RPC框架实现思路浅析
  11. DxPackNet 3.音频捕捉(录音)
  12. 学习笔记7-Android短信发送器
  13. Google 以 Flutter 作为原生突破口,移动端即将统一了
  14. 一个故事讲清楚BIO NIO 异步
  15. Spring 框架下 事务的配置(复杂)
  16. c# 二进制序列化
  17. Python+selenium点击网页上指定坐标
  18. poj3279(dfs+二进制枚举思路)
  19. Qt Creator设置多核编译(-j8参数)
  20. asp.net 4高级程序设计( 第4版)文摘

热门文章

  1. JSP页面怎样导入优酷视频
  2. Vue 实现原理
  3. AVAudioSessionCategory的选择
  4. python 变量作用域 v.__sizeof__() python 深复制 一切皆对象 尽量减少内存消耗
  5. 协议解析Bug分析
  6. where 1=1影响效率以及having和where的区别
  7. Lucas模板&amp;快速幂模板
  8. MPEG2、MPEG4、H264的差异
  9. docker 基本指令
  10. 10.6 Graph Test