编写题解 2912: 最长平台 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int n; scanf("%d",&n); int a[n]; for(int i=0;i<n;i++){ …… 题解列表 2023年03月29日 0 点赞 1 评论 267 浏览 评分:7.3
2912: 最长平台(C语言) 摘要: #include int main() { int n; scanf("%d",&n); int a[n]; for(int i=0;imax_length) …… 题解列表 2023年07月27日 0 点赞 0 评论 158 浏览 评分:0.0
另外一道相同原理https://www.dotcpp.com/oj/problem2814.html 摘要:解题思路:开辟一个动态变量注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d", &n); int arr[n]; …… 题解列表 2024年12月19日 0 点赞 0 评论 56 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>int main(){ int n, * a,i,plateau_length=1,max_p…… 题解列表 2023年06月11日 0 点赞 0 评论 132 浏览 评分:0.0
最长平台(再建一个数组存各连续平台长度) 摘要:参考代码: ```c #include int main() { int n; scanf("%d",&n); int a[n]; int b[n];//存连续平台长度 i…… 题解列表 2023年11月02日 0 点赞 0 评论 119 浏览 评分:0.0