题解 2912: 最长平台

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

编写题解 2912: 最长平台

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h> using namespace std; int findLongestPlateau(int arr[], int……

2912: 最长平台

摘要:```cpp #include using namespace std; int main() { int n,count=1,max=1,a[1001]; cin>>n;……

题解 2912: 最长平台

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; int main(){ int n,count=1,max=1,a[10……