摘要: 2019牛客多校训练第一场题解 题目链接 A.Equivalent Prefixes 考虑位置$i$为区间最小值的下标,那么只需要找到左边第一个值比它小的位置就行了。单调栈搞一搞就行。 Code ```cpp #include using namespace std; const int N = 5 阅读全文
posted @ 2019-07-19 20:57 heyuhhh 阅读(565) 评论(0) 推荐(0) 编辑