CF758C.Unfair Poll
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
On the Literature lesson Sergei noticed an awful injustice, it seems that some students are asked more often than others.
Seating in the class looks like a rectangle, where n rows with m pupils in each.
The teacher asks pupils in the following order: at first, she asks all pupils from the first row in the order of their seating, then she continues to ask pupils from the next row. If the teacher asked the last row, then the direction of the poll changes, it means that she asks the previous row. The order of asking the rows looks as follows: the 1 -st row, the 2 -nd row, ... , the n−1 -st row, the n -th row, the n−1 -st row, ... , the 2 -nd row, the 1 -st row, the 2 -nd row, ...
The order of asking of pupils on the same row is always the same: the 1 -st pupil, the 2 -nd pupil, ... , the m -th pupil.
During the lesson the teacher managed to ask exactly k questions from pupils in order described above. Sergei seats on the x -th row, on the y -th place in the row. Sergei decided to prove to the teacher that pupils are asked irregularly, help him count three values:
- the maximum number of questions a particular pupil is asked,
- the minimum number of questions a particular pupil is asked,
- how many times the teacher asked Sergei.
If there is only one row in the class, then the teacher always asks children from this row.
输入格式
The first and the only line contains five integers n , m , k , x and y ( 1<=n,m<=100,1<=k<=1018,1<=x<=n,1<=y<=m ).
输出格式
Print three integers:
- the maximum number of questions a particular pupil is asked,
- the minimum number of questions a particular pupil is asked,
- how many times the teacher asked Sergei.
输入输出样例
输入#1
1 3 8 1 1
输出#1
3 2 3
输入#2
4 2 9 4 2
输出#2
2 1 1
输入#3
5 5 25 4 3
输出#3
1 1 1
输入#4
100 100 1000000000000000000 100 100
输出#4
101010101010101 50505050505051 50505050505051
说明/提示
The order of asking pupils in the first test:
- the pupil from the first row who seats at the first table, it means it is Sergei;
- the pupil from the first row who seats at the second table;
- the pupil from the first row who seats at the third table;
- the pupil from the first row who seats at the first table, it means it is Sergei;
- the pupil from the first row who seats at the second table;
- the pupil from the first row who seats at the third table;
- the pupil from the first row who seats at the first table, it means it is Sergei;
- the pupil from the first row who seats at the second table;
The order of asking pupils in the second test:
- the pupil from the first row who seats at the first table;
- the pupil from the first row who seats at the second table;
- the pupil from the second row who seats at the first table;
- the pupil from the second row who seats at the second table;
- the pupil from the third row who seats at the first table;
- the pupil from the third row who seats at the second table;
- the pupil from the fourth row who seats at the first table;
- the pupil from the fourth row who seats at the second table, it means it is Sergei;
- the pupil from the third row who seats at the first table;