
Vaibhav and Ministers
|
All submissions for this problem are available.
Read problems statements in Mandarin chinese, Russian and Vietnamese as well.
Shortly after joining the Parliament, our Chef has been elected as the new Prime Minister. Now, being the PM, he can do one good or bad deed per day. Initially, Chef has a *reputation* with his cabinet equal to $0$; when he does a good deed, his reputation increases by $1$ and when he does a bad deed, his reputation decreases by $1$. Chef plans to do exactly $p$ good deeds and exactly $q$ bad deeds. However, to do a bad deed, his reputation must be strictly greater than $c$ (before doing this deed) — otherwise, he would lose the confidence of his cabinet and be forced to resign. DGP Vaibhav has been dealing with corrupt ministers for a long time. In the past, he has arrested $M$ corrupt ministers. For each $1 \le i \le M$, when the $i$-th minister was arrested, that minister had done $g_i$ good deeds and $b_i$ bad deeds. Over time, Vaibhav has become an expert at detecting and arresting corrupt ministers — Chef is certain that immediately after he performs exactly $g_i$ good deeds and exactly $b_i$ bad deeds (for some $i$ between $1$ and $M$ inclusive), he will end up arrested by Vaibhav. Since Chef plans to be a good PM, we may assume he won't be arrested by Vaibhav for any other reason. Compute the number of sequences of good and bad deeds Chef can perform in order to execute his plan without getting arrested by Vaibhav or losing the confidence of his cabinet, modulo $10^9 + 7$. ### Input - The first line of the input contains four space-separated integers $p$, $q$, $c$ and $M$ denoting the total number of good deeds, total number of bad deeds, the reputation threshold and the number of previously arrested ministers. - Each of the following $M$ lines contains two space-separated integers $g$ and $b$ denoting the number of good deeds and the number of bad deeds of an arrested minister. ### Output Print a single line containing one integer — the number of possible sequences modulo $10^9 + 7$. ### Constraints - $1 \le M \le 3,000$ - $0 \le p, q, c \le 2,000,000$ - $0 \le g, b \le 2,000,000$ ### Subtasks **Subtask #1 (30 points):** $0 \le p, q \le 2,000$ **Subtask #2 (70 points):** original constraints ### Example Input5 2 2 6 3 4 1 5 4 4 5 0 2 2 5 0### Example Output
4### Explanation There are only 4 ways to do 5 good and 2 bad deeds without losing the cabinet's confidence and without being caught by Vaibhav:
- G G G G B G B - G G G G B B G - G G G B G G B - G G G B G B G### Note
- G G B G G G B is not a valid sequence since after doing G G his reputation is just 2 units and committing a B after that him lose the confidence of the cabinet. - G G G G G B B is not valid since on committing G G G G G Chef will have committed 5 good deeds and 0 bad deeds which will get him arrested by Vaibhav.
Author: | vaibhav18197 |
Editorial | https://discuss.codechef.com/problems/VAIMIN |
Tags | april18, combinatorics, dynamic-programming, generalized-catalan, medium-hard, vaibhav18197 |
Date Added: | 3-12-2017 |
Time Limit: | 1 sec |
Source Limit: | 50000 Bytes |
Languages: | C, CPP14, JAVA, PYTH, PYTH 3.6, PYPY, CS2, PAS fpc, PAS gpc, RUBY, PHP, GO, NODEJS, HASK, rust, SCALA, swift, D, PERL, FORT, WSPC, ADA, CAML, ICK, BF, ASM, CLPS, PRLG, ICON, SCM qobi, PIKE, ST, NICE, LUA, BASH, NEM, LISP sbcl, LISP clisp, SCM guile, JS, ERL, TCL, kotlin, PERL6, TEXT, SCM chicken, CLOJ, COB, FS |
Comments
- Please login at the top to post a comment.
SUCCESSFUL SUBMISSIONS
Fetching successful submissions
