1361. Protocols

单点时限: 2.0 sec

内存限制: 256 MB

Mr Halfnet works in a telecommunication company Bytetel as a designer of network protocols. At present he works on a protocol to send data from one computer to another by means of a new generation cable. One can send signals of k different voltage levels on such a cable, but the voltage may vary only every 1/n of a second (1/n of a second during which the voltage must be constant is called an impulse). Data are sent in packets comprising m consecutive impulses (i.e. sending one packet takes m/n seconds).

For technical reasons, the voltage must not be constant within each packet, but has to change from time to time. Strictly speaking, one cannot send packets of data containing l consecutive impulses of the same voltage level.

If a protocol enables to send x different packets, we say that we can code log2x bits of information in one packet. Mr Halfnet ponders on how many bits of information maximally one is able to send in one second.

Example

Assume the cable enables us to send signals of 2 different voltage levels (k=2), which we denote 0 and 1. If the voltage can vary 20 times per second (n=20), the packets comprise 4 impulses (m=4), and within each packet no 3 consecutive impulses may have the same voltage (l=3), then one cannot send packets: 0000, 0001, 1000, 1111, 1110, 0111. However, one can send packets: 0010, 0011, 0100, 0110, 0101, 1101, 1100, 1011, 1001 and 1010. As one can send 10 different kinds of packets, one can code log210 bits of information in each packet. During a second one can send 20/4 = 5 packets, that is 5*log210 ~ 16.6096 bits of information.

Task

Write a program which:

1.reads the numbers k, n, m and l describing the protocol,

2.computes the maximal number of bits of information that may be sent during one second,

3.writes the computed number rounded down to the nearest integer.

输入格式

In the first line there are four integers, separated by single spaces:

the number of voltage levels k (2 <= k <= 10),

the frequency of impulses n (1 <= n <= 1000),

the size of packet of data m (1 <= m <= 100),

the number l of consecutive impulses in a packet, that there must be a change in voltage within (2 <= l <= m),

Additionally, we assume that n/m is an integer less than or equal to 10.

输出格式

Your program should write, in the first and only line, one integer: the maximal number of bits that may be sent during one second, rounded down to the nearest integer.

样例

Input
2 20 4 3
Output
16

0 人解决,1 人已尝试。

0 份提交通过,共有 2 份提交。

9.9 EMB 奖励。

创建: 16 年,9 月前.

修改: 6 年,8 月前.

最后提交: 1 年,1 月前.

来源: POI

题目标签