题解 1328: 移动服务员

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

1328: 移动服务员

摘要:# 1328: 移动服务员 是一道比较经典的入门题dp。 ```cpp /* * 题目 1328: 移动服务员 * 很容易设计出两种dp数组 dp[轮数][服务员数量][服务员位置],……

1328: 移动服务员

摘要:```cpp #include #include #include using namespace std; int f[2][210][210],p[1010],c[210][210],l……