#P1418E. Expected Damage

    ID: 5579 Type: RemoteJudge 2000ms 256MiB Tried: 0 Accepted: 0 Difficulty: (None) Uploaded By: Tags>binary searchcombinatoricsprobabilities*2400

Expected Damage

No submission language available for this problem.

Description

You are playing a computer game. In this game, you have to fight nn monsters.

To defend from monsters, you need a shield. Each shield has two parameters: its current durability aa and its defence rating bb. Each monster has only one parameter: its strength dd.

When you fight a monster with strength dd while having a shield with current durability aa and defence bb, there are three possible outcomes:

  • if a=0a = 0, then you receive dd damage;
  • if a>0a > 0 and dbd \ge b, you receive no damage, but the current durability of the shield decreases by 11;
  • if a>0a > 0 and d<bd < b, nothing happens.

The ii-th monster has strength did_i, and you will fight each of the monsters exactly once, in some random order (all n!n! orders are equiprobable). You have to consider mm different shields, the ii-th shield has initial durability aia_i and defence rating bib_i. For each shield, calculate the expected amount of damage you will receive if you take this shield and fight the given nn monsters in random order.

The first line contains two integers nn and mm (1n,m21051 \le n, m \le 2 \cdot 10^5) — the number of monsters and the number of shields, respectively.

The second line contains nn integers d1d_1, d2d_2, ..., dnd_n (1di1091 \le d_i \le 10^9), where did_i is the strength of the ii-th monster.

Then mm lines follow, the ii-th of them contains two integers aia_i and bib_i (1ain1 \le a_i \le n; 1bi1091 \le b_i \le 10^9) — the description of the ii-th shield.

Print mm integers, where the ii-th integer represents the expected damage you receive with the ii-th shield as follows: it can be proven that, for each shield, the expected damage is an irreducible fraction xy\dfrac{x}{y}, where yy is coprime with 998244353998244353. You have to print the value of xy1mod998244353x \cdot y^{-1} \bmod 998244353, where y1y^{-1} is the inverse element for yy (yy1mod998244353=1y \cdot y^{-1} \bmod 998244353 = 1).

Input

The first line contains two integers nn and mm (1n,m21051 \le n, m \le 2 \cdot 10^5) — the number of monsters and the number of shields, respectively.

The second line contains nn integers d1d_1, d2d_2, ..., dnd_n (1di1091 \le d_i \le 10^9), where did_i is the strength of the ii-th monster.

Then mm lines follow, the ii-th of them contains two integers aia_i and bib_i (1ain1 \le a_i \le n; 1bi1091 \le b_i \le 10^9) — the description of the ii-th shield.

Output

Print mm integers, where the ii-th integer represents the expected damage you receive with the ii-th shield as follows: it can be proven that, for each shield, the expected damage is an irreducible fraction xy\dfrac{x}{y}, where yy is coprime with 998244353998244353. You have to print the value of xy1mod998244353x \cdot y^{-1} \bmod 998244353, where y1y^{-1} is the inverse element for yy (yy1mod998244353=1y \cdot y^{-1} \bmod 998244353 = 1).

Samples

Sample Input 1

3 2
1 3 1
2 1
1 2

Sample Output 1

665496237
1

Sample Input 2

3 3
4 2 6
3 1
1 2
2 3

Sample Output 2

0
8
665496236