A12718 | Playlist for Polycarp (hard version)
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
The only difference between easy and hard versions is constraints.
Polycarp loves to listen to music, so he never leaves the player, even on the way home from the university. Polycarp overcomes the distance from the university to the house in exactly $T$ minutes.
In the player, Polycarp stores $n$ songs, each of which is characterized by two parameters: $t_i$ and $g_i$ , where $t_i$ is the length of the song in minutes ( $1 \le t_i \le 50$ ), $g_i$ is its genre ( $1 \le g_i \le 3$ ).
Polycarp wants to create such a playlist so that he can listen to music all the time on the way from the university to his home, and at the time of his arrival home, the playlist is over. Polycarp never interrupts songs and always listens to them from beginning to end. Thus, if he started listening to the $i$ -th song, he would spend exactly $t_i$ minutes on its listening. Polycarp also does not like when two songs of the same genre play in a row (i.e. successively/adjacently) or when the songs in his playlist are repeated.
Help Polycarpus count the number of different sequences of songs (their order matters), the total duration is exactly $T$ , such that there are no two consecutive songs of the same genre in them and all the songs in the playlist are different.
Polycarp loves to listen to music, so he never leaves the player, even on the way home from the university. Polycarp overcomes the distance from the university to the house in exactly $T$ minutes.
In the player, Polycarp stores $n$ songs, each of which is characterized by two parameters: $t_i$ and $g_i$ , where $t_i$ is the length of the song in minutes ( $1 \le t_i \le 50$ ), $g_i$ is its genre ( $1 \le g_i \le 3$ ).
Polycarp wants to create such a playlist so that he can listen to music all the time on the way from the university to his home, and at the time of his arrival home, the playlist is over. Polycarp never interrupts songs and always listens to them from beginning to end. Thus, if he started listening to the $i$ -th song, he would spend exactly $t_i$ minutes on its listening. Polycarp also does not like when two songs of the same genre play in a row (i.e. successively/adjacently) or when the songs in his playlist are repeated.
Help Polycarpus count the number of different sequences of songs (their order matters), the total duration is exactly $T$ , such that there are no two consecutive songs of the same genre in them and all the songs in the playlist are different.
输入格式
The first line of the input contains two integers $n$ and $T$ ( $1 \le n \le 50, 1 \le T \le 2500$ ) — the number of songs in the player and the required total duration, respectively.
Next, the $n$ lines contain descriptions of songs: the $i$ -th line contains two integers $t_i$ and $g_i$ ( $1 \le t_i \le 50, 1 \le g_i \le 3$ ) — the duration of the $i$ -th song and its genre, respectively.
Next, the $n$ lines contain descriptions of songs: the $i$ -th line contains two integers $t_i$ and $g_i$ ( $1 \le t_i \le 50, 1 \le g_i \le 3$ ) — the duration of the $i$ -th song and its genre, respectively.
输出格式
Output one integer — the number of different sequences of songs, the total length of exactly $T$ , such that there are no two consecutive songs of the same genre in them and all the songs in the playlist are different. Since the answer may be huge, output it modulo $10^9 + 7$ (that is, the remainder when dividing the quantity by $10^9 + 7$ ).
输入输出样例
输入 #1
3 3 1 1 1 2 1 3
输出 #1
6
输入 #2
3 3 1 1 1 1 1 3
输出 #2
2
输入 #3
4 10 5 3 2 1 3 2 5 1
输出 #3
10
In the first example, Polycarp can make any of the $6$ possible playlist by rearranging the available songs: $[1, 2, 3]$ , $[1, 3, 2]$ , $[2, 1, 3]$ , $[2, 3, 1]$ , $[3, 1, 2]$ and $[3, 2, 1]$ (indices of the songs are given).
In the second example, the first and second songs cannot go in succession (since they have the same genre). Thus, Polycarp can create a playlist in one of $2$ possible ways: $[1, 3, 2]$ and $[2, 3, 1]$ (indices of the songs are given).
In the third example, Polycarp can make the following playlists: $[1, 2, 3]$ , $[1, 3, 2]$ , $[2, 1, 3]$ , $[2, 3, 1]$ , $[3, 1, 2]$ , $[3, 2, 1]$ , $[1, 4]$ , $[4, 1]$ , $[2, 3, 4]$ and $[4, 3, 2]$ (indices of the songs are given).
In the second example, the first and second songs cannot go in succession (since they have the same genre). Thus, Polycarp can create a playlist in one of $2$ possible ways: $[1, 3, 2]$ and $[2, 3, 1]$ (indices of the songs are given).
In the third example, Polycarp can make the following playlists: $[1, 2, 3]$ , $[1, 3, 2]$ , $[2, 1, 3]$ , $[2, 3, 1]$ , $[3, 1, 2]$ , $[3, 2, 1]$ , $[1, 4]$ , $[4, 1]$ , $[2, 3, 4]$ and $[4, 3, 2]$ (indices of the songs are given).
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted