• 线性dp,271. 杨老师的照相排列


    271. 杨老师的照相排列 - AcWing题库

    有 N 个学生合影,站成左端对齐的 k 排,每排分别有 N1,N2,…,N 个人。 (N1≥N2≥…≥N)

    第 1 排站在最后边,第 k 排站在最前边。

    学生的身高互不相同,把他们从高到底依次标记为 1,2,…,N。

    在合影时要求每一排从左到右身高递减,每一列从后到前身高也递减。

    问一共有多少种安排合影位置的方案?

    下面的一排三角矩阵给出了当 N=6,k=3,N1=3,N2=2,N3=1时的全部 16 种合影方案。注意身高最高的是 1,最低的是 6。

    1. 123 123 124 124 125 125 126 126 134 134 135 135 136 136 145 146
    2. 45 46 35 36 34 36 34 35 25 26 24 26 24 25 26 25
    3. 6 5 6 5 6 4 5 4 6 5 6 4 5 4 3 3
    输入格式

    输入包含多组测试数据

    每组数据两行,第一行包含一个整数 k 表示总排数。

    第二行包含 k 个整数,表示从后向前每排的具体人数。

    当输入 k=0 的数据时,表示输入终止,且该数据无需处理。

    输出格式

    每组测试数据输出一个答案,表示不同安排的数量。

    每个答案占一行。

    数据范围

    1≤k≤5,学生总人数不超过 30 人。

    输入样例:
    1. 1
    2. 30
    3. 5
    4. 1 1 1 1 1
    5. 3
    6. 3 2 1
    7. 4
    8. 5 3 3 1
    9. 5
    10. 6 5 4 3 2
    11. 2
    12. 15 15
    13. 0
    输出样例:
    1. 1
    2. 1
    3. 16
    4. 4158
    5. 141892608
    6. 9694845

     解析:

    核心性质:

    从高到低依次安排每个同学的位置,那么在安排过程中,当前同学一定占据每排最靠左的连续若干个位置,且从后往前每排人数单调递减。否则一定不满足“每排从左到右身高递减,从后到前身高也递减”这个要求。

    DP的核心思想是用集合来表示一类方案,然后从集合的维度来考虑状态之间的递推关系。

    受上述性质启发,状态表示为:

    1.f[a][b][c][d][e]代表从后往前每排人数分别为a, b, c, d, e的所有方案的集合, 其中a >= b >= c     >= d >= e;
    2.f[a][b][c][d][e]的值是该集合中元素的数量;


    状态计算对应集合的划分,令最后一个同学被安排在哪一排作为划分依据,可以将f[a][b][c][d][e]划分成5个不重不漏的子集

    当a > 0 && a - 1 >= b时,最后一个同学可能被安排在第1排,方案数是f[a - 1][b][c][d][e];
    当b > 0 && b - 1 >= c时,最后一个同学可能被安排在第2排,方案数是f[a][b - 1][c][d][e];
    当c > 0 && c - 1 >= d时,最后一个同学可能被安排在第3排,方案数是f[a][b][c - 1][d][e];
    当d > 0 && d - 1 >= e时,最后一个同学可能被安排在第4排,方案数是f[a][b][c][d - 1][e];
    当e > 0时,最后一个同学可能被安排在第5排,方案数是f[a][b][c][d][e - 1];
    时间复杂度
     

    作者:yxc
    链接:https://www.acwing.com/solution/content/4954/
    来源:AcWing
    著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

    按照上述思路的代码

    1. #include
    2. #include
    3. #include
    4. #include
    5. #include
    6. #include
    7. #include
    8. #include
    9. #include
    10. #include
    11. #include
    12. #include
    13. #include
    14. using namespace std;
    15. typedef long long LL;
    16. const int N = 31;
    17. int n;
    18. int s[6];
    19. LL f[N][N][N][N][N];
    20. int main() {
    21. while (scanf("%d", &n) != EOF) {
    22. if (n == 0)
    23. break;
    24. memset(s, 0, sizeof(s));
    25. memset(f, 0, sizeof(f));
    26. for (int i = 1; i <= n; i++)
    27. scanf("%d", &s[i]);
    28. f[0][0][0][0][0] = 1;
    29. for (int a = 0; a <= s[1]; a++) {
    30. for (int b = 0; b <= min(s[2], a); b++) {
    31. for (int c = 0; c <= min(s[3], b); c++) {
    32. for (int d = 0; d <= min(c, s[4]); d++) {
    33. for (int e = 0; e <= min(d, s[5]); e++) {
    34. if (a && a - 1 >= b)f[a][b][c][d][e] += f[a - 1][b][c][d][e];
    35. if (b && b - 1 >= c)f[a][b][c][d][e] += f[a][b - 1][c][d][e];
    36. if (c && c - 1 >= d)f[a][b][c][d][e] += f[a][b][c - 1][d][e];
    37. if (d && d - 1 >= e)f[a][b][c][d][e] += f[a][b][c][d - 1][e];
    38. if (e)f[a][b][c][d][e] += f[a][b][c][d][e - 1];
    39. }
    40. }
    41. }
    42. }
    43. }
    44. cout << f[s[1]][s[2]][s[3]][s[4]][s[5]] << endl;
    45. }
    46. return 0;
    47. }

     我本人的思路和yxz的差不多,但有一点点不同,看代码

    1. #include
    2. #include
    3. #include
    4. #include
    5. #include
    6. #include
    7. #include
    8. #include
    9. #include
    10. #include
    11. #include
    12. #include
    13. #include
    14. using namespace std;
    15. typedef long long LL;
    16. const int N = 31;
    17. int n;
    18. int s[6];
    19. LL f[N][N][N][N][N];
    20. int main() {
    21. while (scanf("%d", &n) != EOF) {
    22. if (n == 0)
    23. break;
    24. memset(s, 0, sizeof(s));
    25. memset(f, 0, sizeof(f));
    26. for (int i = 1; i <= n; i++)
    27. scanf("%d", &s[i]);
    28. f[0][0][0][0][0] = 1;
    29. for (int a = 0; a <= s[1]; a++) {
    30. for (int b = 0; b <= min(s[2], a); b++) {
    31. for (int c = 0; c <= min(s[3], b); c++) {
    32. for (int d = 0; d <= min(c, s[4]); d++) {
    33. for (int e = 0; e <= min(d, s[5]); e++) {
    34. if (a)f[a][b][c][d][e] += f[a - 1][b][c][d][e];
    35. if (b)f[a][b][c][d][e] += f[a][b - 1][c][d][e];
    36. if (c)f[a][b][c][d][e] += f[a][b][c - 1][d][e];
    37. if (d)f[a][b][c][d][e] += f[a][b][c][d - 1][e];
    38. if (e)f[a][b][c][d][e] += f[a][b][c][d][e - 1];
    39. }
    40. }
    41. }
    42. }
    43. }
    44. cout << f[s[1]][s[2]][s[3]][s[4]][s[5]] << endl;
    45. }
    46. return 0;
    47. }

  • 相关阅读:
    实战PyQt5: 141-QChart图表之箱形图
    总算给女盆友讲明白了,如何使用stream流的filter()操作
    面试其他注意事项
    接口自动化测试框架:Pytest+Allure+Excel
    树莓派入门二(微型计算机)
    RabbitMQ集群搭建
    OpenAI划时代大模型——文本生成视频模型Sora作品欣赏(八)
    2017年高热度编程语言简介
    【附源码】计算机毕业设计JAVA学校食堂订餐管理
    fiddler使用教程
  • 原文地址:https://blog.csdn.net/Landing_on_Mars/article/details/132891189