另外一道相同原理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
java 编写题解 2912: 最长平台 递归 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args…… 题解列表 2024年01月10日 0 点赞 0 评论 117 浏览 评分:0.0
题解 2912: 最长平台 摘要: #include using namespace std; int a[20000],c,d,n; int main() { cin>>n; …… 题解列表 2023年12月13日 0 点赞 0 评论 101 浏览 评分: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
2912: 最长平台(C语言) 摘要: #include int main() { int n; scanf("%d",&n); int a[n]; for(int i=0;imax_length) …… 题解列表 2023年07月27日 0 点赞 0 评论 157 浏览 评分:0.0
最长平台(C++)简单又实用 摘要:参考代码:#include <iostream>#include <vector>using namespace std;int main() { int n; cin >> n; //…… 题解列表 2023年07月19日 0 点赞 1 评论 156 浏览 评分:9.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
编写题解 2912: 最长平台 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h> using namespace std; int findLongestPlateau(int arr[], int…… 题解列表 2023年05月20日 0 点赞 0 评论 178 浏览 评分:6.8
循环的范围要注意 摘要:解题思路:注意事项:参考代码:n=int(input())l=list(map(int,input().split()))mx=0cou=1##for i in range(max(l)+1):## …… 题解列表 2023年05月06日 0 点赞 0 评论 115 浏览 评分:0.0
编写题解 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