摘要: 1 #include<bits/stdc++.h> 2 using namespace std; 3 struct node{ int time,value;}; 4 int dp[1001][1001]={0}; 5 int main() 6 { 7 node array[1000]; 8 int 阅读全文
posted @ 2021-04-11 09:43 南理工学渣 阅读(42) 评论(0) 推荐(0)
摘要: #include<bits/stdc++.h> using namespace std; const int MAX=1001; int d[MAX][MAX]; int maxsum[MAX][MAX]; int main() { int r; cin>>r; for(int i=1;i<=r;i 阅读全文
posted @ 2021-04-11 09:42 南理工学渣 阅读(69) 评论(0) 推荐(0)