1002 Business (35分)
题目传送门:1002 Business (35分)
一、题目大意
任务调度··
二、解题思路
刚开始用dfs超时了···然后参考了某位网友的思路,使用动态规划写出来了
参考题解:https://blog.csdn.net/qq_41562704/article/details/100826468
三、AC代码
#include<bits/stdc++.h>
using namespace std;
const int N = 51;
struct Node{
int p, l, d;
bool operator<(const Node&that)const{
return d < that.d;
}
};