QOJ.ac

QOJ

حد الوقت: 3 s حد الذاكرة: 512 MB مجموع النقاط: 100

#415. The King's Chess World

الإحصائيات

Given an $R\times C$ chessboard, you have $Q$ queries. For each query, determine the number of ways a king can travel from $(1, a)$ to $(R, b)$ in exactly $R-1$ steps. Output the answer modulo $998244353$.

Input

The first line contains three positive integers $R, C, Q$, representing the dimensions of the chessboard and the number of queries.

Each of the next $Q$ lines contains two positive integers $a$ and $b$, representing a specific query.

Output

Output $Q$ lines, each containing an integer representing the number of ways for the corresponding query.

Examples

Input 1

13 10 10
10 1
2 2
9 1
10 5
8 8
9 1
9 3
7 5
5 6
8 10

Output 1

328
45475
1142
12804
65715
1142
7995
58199
69552
29964

Subtasks

For $100\%$ of the data, it is guaranteed that $2\le C\le 10^5$, $C\le R\le 10^9$, and $1\le Q\le 10^5$.

Subtask ID $C\le$ $Q\le $ Score
$1$ $10^2$ $10^4$ $11$
$2$ $10^3$ $10$ $14$
$3$ $10^5$ $25$
$4$ $10^5$ $10^2$ $30$
$5$ $10^5$ $20$

Discussions

About Discussions

The discussion section is only for posting: General Discussions (problem-solving strategies, alternative approaches), and Off-topic conversations.

This is NOT for reporting issues! If you want to report bugs or errors, please use the Issues section below.

Open Discussions 0
No discussions in this category.

Issues

About Issues

If you find any issues with the problem (statement, scoring, time/memory limits, test cases, etc.), you may submit an issue here. A problem moderator will review your issue.

Guidelines:

  1. This is not a place to publish discussions, editorials, or requests to debug your code. Issues are only visible to you and problem moderators.
  2. Do not submit duplicated issues.
  3. Issues must be filed in English or Chinese only.
Active Issues 0
No issues in this category.
Closed/Resolved Issues 0
No issues in this category.