304191: CF802D. Marmots (easy)

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Marmots (easy)

题意翻译

- 有多个函数 - 每个函数给你250个值,试判断是泊松分布(poisson)还是均匀分布(uniform)?

题目描述

Heidi is a statistician to the core, and she likes to study the evolution of marmot populations in each of $ V $ ( $ 1<=V<=100 $ ) villages! So it comes that every spring, when Heidi sees the first snowdrops sprout in the meadows around her barn, she impatiently dons her snowshoes and sets out to the Alps, to welcome her friends the marmots to a new season of thrilling adventures. Arriving in a village, Heidi asks each and every marmot she comes across for the number of inhabitants of that village. This year, the marmots decide to play an April Fools' joke on Heidi. Instead of consistently providing the exact number of inhabitants $ P $ ( $ 10<=P<=1000 $ ) of the village, they respond with a random non-negative integer $ k $ , drawn from one of two types of probability distributions: - Poisson (d'avril) distribution: the probability of getting an answer $ k $ is ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF802D/3800ef7834670e3e97c0f3e37b279e2c0c6dafbf.png) for $ k=0,1,2,3,... $ , - Uniform distribution: the probability of getting an answer $ k $ is ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF802D/b16ed5068242e81ea04aac7ee7fe27322715cce4.png) for $ k=0,1,2,...,2P $ . Heidi collects exactly 250 answers per village. Every village follows either the Poisson or the uniform distribution. Heidi cannot tell marmots apart, so she may query some marmots several times, and each time the marmot will answer with a new number drawn from the village's distribution. Can you help Heidi to find out whether a village follows a Poisson or a uniform distribution?

输入输出格式

输入格式


The first line of input will contain the number of villages $ V $ ( $ 1<=V<=100 $ ). The following $ V $ lines each describe one village. The description of each village consists of 250 space-separated integers $ k $ , drawn from one of the above distributions.

输出格式


Output one line per village, in the same order as provided in the input. The village's line shall state poisson if the village's distribution is of the Poisson type, and uniform if the answer came from a uniform distribution.

输入输出样例

输入样例 #1

2
92 100 99 109 93 105 103 106 101 99 ... (input is truncated)
28 180 147 53 84 80 180 85 8 16 ... (input is truncated)

输出样例 #1

poisson
uniform

说明

The full example input is visually represented below, along with the probability distribution function it was drawn from (the $ y $ -axis is labeled by its values multiplied by 250). ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF802D/c9274c7e7ba8e64005598277624514dac31cbb50.png)

Input

题意翻译

- 有多个函数 - 每个函数给你250个值,试判断是泊松分布(poisson)还是均匀分布(uniform)?

加入题单

算法标签: