摘要: 1005 直接dp即可 #include <bits/stdc++.h> using namespace std; int dp[5005][5005]; int N; int a[5005]; const int MOD = 1e9+7; int main(){ int T; cin >> T; 阅读全文
posted @ 2023-07-26 20:25 si_nian 阅读(65) 评论(0) 推荐(0)