300486: CF93B. End of Exams

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

Description

End of Exams

题意翻译

有n个人,m杯饮料,每杯饮料容量w。 现要求均分分饮料,即每人分到n*m/w单位容量的饮料 要求满足每一杯饮料至多分到两个人手上,输出YES或NO表示是否存在满足题设的解法。 若存在,输出m行,第i行包含若干个b v对,表示第i个人分到了编号为b的杯子中v容量的饮料。v的精度要求小数点后6位。 翻译由[chenxia25](https://www.luogu.com.cn/user/138400)的女朋友提供

题目描述

Students love to celebrate their holidays. Especially if the holiday is the day of the end of exams! Despite the fact that Igor K., unlike his groupmates, failed to pass a programming test, he decided to invite them to go to a cafe so that each of them could drink a bottle of... fresh cow milk. Having entered the cafe, the $ m $ friends found $ n $ different kinds of milk on the menu, that's why they ordered $ n $ bottles — one bottle of each kind. We know that the volume of milk in each bottle equals $ w $ . When the bottles were brought in, they decided to pour all the milk evenly among the $ m $ cups, so that each got a cup. As a punishment for not passing the test Igor was appointed the person to pour the milk. He protested that he was afraid to mix something up and suggested to distribute the drink so that the milk from each bottle was in no more than two different cups. His friends agreed but they suddenly faced the following problem — and what is actually the way to do it? Help them and write the program that will help to distribute the milk among the cups and drink it as quickly as possible! Note that due to Igor K.'s perfectly accurate eye and unswerving hands, he can pour any fractional amount of milk from any bottle to any cup.

输入输出格式

输入格式


The only input data file contains three integers $ n $ , $ w $ and $ m $ ( $ 1<=n<=50 $ , $ 100<=w<=1000 $ , $ 2<=m<=50 $ ), where $ n $ stands for the number of ordered bottles, $ w $ stands for the volume of each of them and $ m $ stands for the number of friends in the company.

输出格式


Print on the first line "YES" if it is possible to pour the milk so that the milk from each bottle was in no more than two different cups. If there's no solution, print "NO". If there is a solution, then print $ m $ more lines, where the $ i $ -th of them describes the content of the $ i $ -th student's cup. The line should consist of one or more pairs that would look like " $ b $ $ v $ ". Each such pair means that $ v $ ( $ v&gt;0 $ ) units of milk were poured into the $ i $ -th cup from bottle $ b $ ( $ 1<=b<=n $ ). All numbers $ b $ on each line should be different. If there are several variants to solve the problem, print any of them. Print the real numbers with no less than 6 digits after the decimal point.

输入输出样例

输入样例 #1

2 500 3

输出样例 #1

YES
1 333.333333
2 333.333333
2 166.666667 1 166.666667

输入样例 #2

4 100 5

输出样例 #2

YES
3 20.000000 4 60.000000
1 80.000000
4 40.000000 2 40.000000
3 80.000000
2 60.000000 1 20.000000

输入样例 #3

4 100 7

输出样例 #3

NO

输入样例 #4

5 500 2

输出样例 #4

YES
4 250.000000 5 500.000000 2 500.000000
3 500.000000 1 500.000000 4 250.000000

Input

题意翻译

有n个人,m杯饮料,每杯饮料容量w。 现要求均分分饮料,即每人分到n*m/w单位容量的饮料 要求满足每一杯饮料至多分到两个人手上,输出YES或NO表示是否存在满足题设的解法。 若存在,输出m行,第i行包含若干个b v对,表示第i个人分到了编号为b的杯子中v容量的饮料。v的精度要求小数点后6位。 翻译由[chenxia25](https://www.luogu.com.cn/user/138400)的女朋友提供

加入题单

算法标签: