摘要: 解法一:分治思想 #include <iostream>#include <cstdio>#include <algorithm>using namespace std;int n,a[200200];int fun(int l,int r){ if(l==r) return a[l]; //递归终 阅读全文
posted @ 2020-08-19 00:03 py佐料 阅读(149) 评论(0) 推荐(0)