一、背景
最近在看人机协作相关的论文,其中有一篇是Arash Ajoudani于2018发表在Autonomous Robots题为Progress and prospects of the human–robot collaboration的综述。当看到最后Acknowledgements部分,有一句话是The authors would like to thank a…
问题描述: 代码:
#include<bits/stdc.h>
using namespace std;
int n, m, k, ans, mod 1e9 7;
long long dp[55][2605];
/*dp[i][j]:第i个街道上建j个房屋的总方案数枚举所有的转移,累加到dp[n][k]即总方案数
*/
int main()
{cin >> n &…