牛客练习赛11 E :求最值
分治思想
代码:
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const int maxn=100000+100;
struct Node{
ll id,sum;
}node[maxn];
int tmp[maxn];
inline bool cmp(int a,int b){...
原创
2018-08-02 20:51:23 ·
992 阅读 ·
0 评论