题解 2909: 直方图

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

筛选

直方图(C++)简单解

摘要:参考代码:#include <iostream>#include <vector>#include <algorithm>using namespace std;int main() {    int……

2909: 直方图

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const int N=1e5;ll p……

@更向天涯 小李子不行啊!!!

摘要:解题思路:注意事项:cin、cout一定要改成scanf和printf不然会超时!!!!参考代码:#include<bits/stdc++.h>using namespace std;int a[10……

加油加油count

摘要:解题思路:注意事项:参考代码:n=int(input())l=list(map(int,input().split()))for i in range(0,max(l)+1):    if i not……

题解 2909: 直方图

摘要: #include using namespace std; int a,b=0,c,d[20000],e[200000]; int main() { ……

编写题解 2909: 直方图

摘要:解题思路:写代码里了注意事项:写代码里了参考代码:#include<stdio.h>int main(){    int n,s=-1,i;    scanf("%d",&n);    int num……

2909: 直方图

摘要:```cpp #include #include using namespace std; int main() { int fmax,maxs=0,a[10001],b[10001];……

直方图(数组版)

摘要:解题思路:很简单就是一个简单的数组元素统计的一个题目,因此我们可以创建两个数组来解决,一个用来输入我们的元素,另一个用来保存我们要记录的0到fmax的元素。 #include int m……

直方图(Java含注释)

摘要:解题思路:注意事项:参考代码:import java.util.Arrays;import java.util.Scanner;public class Test2909 {    public st……