4247.Power Consumption Calculation

Time Limit: 1s Memory Limit: 256MB

Tom is interested in power consumption of his favourite laptop. His laptop has three modes. In normal mode laptop consumes P1 watt per minute. T1 minutes after Tom moved the mouse or touched the keyboard for the last time, a screensaver starts and power consumption changes to P2 watt per minute. Finally, after T2 minutes from the start of the screensaver, laptop switches to the "sleep" mode and consumes P3 watt per minute. If Tom moves the mouse or touches the keyboard when the laptop is in the second or in the third mode, it switches to the first (normal) mode. Tom's work with the laptop can be divided into n time periods [l1,r1],[l2,r2],...,[ln,rn]. During each interval Tom continuously moves the mouse and presses buttons on the keyboard. Between the periods Tom stays away from the laptop. Find out the total amount of power consumed by the laptop during the period [l1,rn].

Input Format(From the terminal/stdin)

The first line contains 6 integer numbers n, P1, P2, P3, T1, T2 (1 \le n \le 100,0 \le P1,P2,P3 \le 100,1 \le T1,T2 \le 60). The following n lines contain description of Tom's work. Each i-th of these lines contains two space-separated integers li and ri (0 \le li \lt ri \le 1440, ri \lt li+1 for i \lt n), which stand for the start and the end of the i-th period of work.

Output Format(To the terminal/stdout)

Output the answer to the problem.

Sample Input 1

Copy
1 3 2 1 5 10
0 10
 · · · · ·  \n
 ·  \n

Sample Output 1

Copy
30
  \n

Sample Input 2

Copy
2 8 4 2 5 10
20 30
50 100
 · · · · ·  \n
  ·  \n
  ·   \n

Sample Output 2

Copy
570
   \n

Submit

请先 登录

© 2025 FAQs