시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 512 MB29141346.429%

문제

To escape the loneliness of working remotely everyday, Erika decided to try on a new hobby: sculpture. She already has a large collection of statues and the municipality has allowed her to show her art outside.

Erika wants her statues to be well visible and thus each statue needs to be placed under a distinct street light. Further, the arrangement should be aesthetic which means that the statues should be placed by increasing size with the smallest statues near the beginning of the street and the biggest ones near the end.

Erika placed her statues but she forgot to place them in increasing size and now she has to reposition them in accordance to both of her desires.

The street has N evenly spaced street lights numbered from 1 at the beginning of the street to N at the end of the street. You estimate the time required to move a statue of size s from the street light i to the light j as taking Erika s × |i − j| units of time. You ask yourself, how much time does it take to reposition all statues knowing that she will use the fastest way possible? Note that she may put statues under street lights that do not have statues at the moment.

입력

The first line of the input contains two space-separated integers: N the number of street lights and K the number of statues. The K following lines each contains two space-separated integers, the i + 1-th line containing the integers Pi and Si describing the i-th statue. Pi gives the number of the street light under which the statue is and Si gives its size.

출력

The output should contain a single line containing a single integer: the minimum amount of time needed to move statues such that each statue is under a different street light and such that the size of statues grows with the street light numbers under which they are.

제한

  • 1 ≤ K ≤ N ≤ 5 000
  • for all 1 ≤ i ≤ K, 1 ≤ Si ≤ 1 000 000, 1 ≤ Pi ≤ N

예제 입력 1

3 3
1 3
2 2
3 1

예제 출력 1

8

Because there are as many street lights as there are statues we need to position the statue of size 1 at street light 1 (which takes 1 × |3 − 1| = 2 units of times), leave the statue of size 2 at street light 2, and move the statue of size 3 to the street light 3 (which takes 3 × |1 − 3| = 6 units of times). In total this takes 8 units of time.

예제 입력 2

4 3
2 2
3 2
4 1

예제 출력 2

3

The fastest way of fixing the ordering of statues is to move the statue of size 1 to the street light 1 for a total time of 1 × |4 − 1| = 3.