题目1499:项目安排

#include <stdio.h> #include <stdlib.h> #include <string.h>   #define MAX 10001   typedef struct project{     int start;     int end;     int value; }Project;   Project myproject[MAX]; int dp[MAX];//状态
相关文章
相关标签/搜索