由于是子序列,那么难度就在于读入 #include<cstdio> #include<algorithm> #include<cstring> using namespace std; char s[9]={'l','u','v','l','e','t','t','e','r'}; int main(){ int T; scanf("%d",&T); char c=getchar(); while (T--){ int ID=0,ans=0;…
虽然A掉了但是时间感人啊.... f( x, k ) 表示使用前 x 种填满容量为 k 的背包的方案数, g( x , k ) 表示使用后 x 种填满容量为 k 的背包的方案数. 丢了第 i 个, 要填满容量为 k 的背包 , 则 ans( i , k ) = ∑ f( i - 1, h ) * g( i + 1 , k - h ) ( 0 <= h <= k ) 这样就转化为经典的背包问题了 f( x , k ) = f( x - 1 , k ) + f( x - 1 , k - w( x…