#P10138. [USACO24JAN] Cowmpetency G

    ID: 11435 远端评测题 2000ms 256MiB 尝试: 0 已通过: 0 难度: 7 上传者: 标签>动态规划 DPUSACO2024动态规划优化前缀和

[USACO24JAN] Cowmpetency G

Problem Description

Farmer John is hiring a new herd leader for his cows. To that end, he has interviewed NN (2N1092 \leq N \leq 10^9) cows for the position. After each interview, he assigned an integer "cowmpetency" score to the candidate ranging from 11 to CC (1C1041 \leq C \leq 10^4) that is correlated with their leadership abilities.

Because he has interviewed so many cows, Farmer John has forgotten all of their cowmpetency scores. However, he does remembers QQ (1Qmin(N1,100)1 \leq Q \leq \min(N - 1, 100)) pairs of numbers (ai,hi)(a_i, h_i) where cow hih_i was the first cow with a strictly greater cowmpetency score than cows 11 through aia_i (so 1ai<hiN1 \leq a_i < h_i \leq N).

Farmer John now tells you the QQ pairs of (ai,hi)(a_i, h_i). Help him count how many sequences of cowmpetency scores are consistent with this information! It is guaranteed that there is at least one such sequence. Because this number may be very large, output its value modulo 109+710^9 + 7.

Input Format

The first line contains NN, QQ, and CC.

The next QQ lines each contain a pair (ai,hi)(a_i, h_i). It is guaranteed that all aja_j are distinct.

Output Format

The number of sequences of cowmpetency scores consistent with what Farmer John remembers, modulo 109+710^9+7.

6 2 3
2 3
4 5
6
10 1 20
1 3
399988086

Hint

For Sample 2:

Make sure to output the answer modulo 109+710^9+7.

SCORING:

  • Inputs 3-4 satisfy N10N \leq 10 and Q,C4Q, C \leq 4.
  • Inputs 5-7 satisfy N,C100N, C \leq 100.
  • Inputs 8-10 satisfy N2000N \leq 2000 and C200C \leq 200.
  • Inputs 11-15 satisfy N,C2000N, C \leq 2000.
  • Inputs 16-20 satisfy no additional constraints.