本文主要是介绍SP1716 GSS3 - Can you answer these queries III 题解,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
SP1716 GSS3 - Can you answer these queries III
SP1716 GSS3 - Can you answer these queries
也真是服了,浪费几分钟来搞这种题目。
直接线段树维护一下端点信息即可,具体来说就是左右端点的权值最大值,答案还有区间权值和。
#include <bits/stdc++.h>
using namespace std;//#define Fread
//#define Getmod#ifdef Fread
char buf[1 << 21], *iS, *iT;
#define gc() (iS == iT ? (iT = (iS = buf) + fread (buf, 1, 1 << 21, stdin), (iS == iT ? EOF : *iS ++)) : *iS ++)
#define getchar gc
#endif // Freadtemplate <typename T>
void r1(T &x) {x = 0;char c(getchar());int f(1);for(; c < '0' || c > '9'; c = getchar()) if(c == '-')</
这篇关于SP1716 GSS3 - Can you answer these queries III 题解的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!