摘要: #include<cstdio> #include<iostream> #include<algorithm> using namespace std; int maxsum(int* A, int x, int y)//可以求[x,y)上的最大连续和 { if (y - x == 1)return 阅读全文
posted @ 2021-02-09 11:40 loliconsk 阅读(62) 评论(0) 推荐(0)