題目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];//狀態
相關文章
相關標籤/搜索