首页 > 宵暗的妖怪
头像 大时代1105
发表于 2025-04-04 12:04:38
思路 线性dp 过程 代码 #include <iostream> using namespace std; typedef long long LL; const int N = 1e5 + 10; int n, a[N]; LL f[N]; int main() { 展开全文