#P1418E. Expected Damage
Expected Damage
No submission language available for this problem.
Description
You are playing a computer game. In this game, you have to fight monsters.
To defend from monsters, you need a shield. Each shield has two parameters: its current durability and its defence rating . Each monster has only one parameter: its strength .
When you fight a monster with strength while having a shield with current durability and defence , there are three possible outcomes:
- if , then you receive damage;
- if and , you receive no damage, but the current durability of the shield decreases by ;
- if and , nothing happens.
The -th monster has strength , and you will fight each of the monsters exactly once, in some random order (all orders are equiprobable). You have to consider different shields, the -th shield has initial durability and defence rating . For each shield, calculate the expected amount of damage you will receive if you take this shield and fight the given monsters in random order.
The first line contains two integers and () — the number of monsters and the number of shields, respectively.
The second line contains integers , , ..., (), where is the strength of the -th monster.
Then lines follow, the -th of them contains two integers and (; ) — the description of the -th shield.
Print integers, where the -th integer represents the expected damage you receive with the -th shield as follows: it can be proven that, for each shield, the expected damage is an irreducible fraction , where is coprime with . You have to print the value of , where is the inverse element for ().
Input
The first line contains two integers and () — the number of monsters and the number of shields, respectively.
The second line contains integers , , ..., (), where is the strength of the -th monster.
Then lines follow, the -th of them contains two integers and (; ) — the description of the -th shield.
Output
Print integers, where the -th integer represents the expected damage you receive with the -th shield as follows: it can be proven that, for each shield, the expected damage is an irreducible fraction , where is coprime with . You have to print the value of , where is the inverse element for ().