主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
菜_多练
2024年7月20日 21:49
众数 - 清华 题解:
P1534
回复 0
|
赞 0
|
浏览 412
include <bits/stdc++.h> using namespace std; int main(){ int n,m; while(cin>>n>>m){ int arr[n]={0}; //记录输入数据 for(int i=0;i<n;i++){ &nb...
chenziyi
2020年4月19日 19:27
请问一下50%通过
P1534
回复 2
|
赞 0
|
浏览 10.9k
#include <iostream> #include <cstdio> #include <cstring> #include <algorithm> #include <string> #include <vector> #include <map> using namespace std; int popu(vector<int> a,int n){ map<int,int> mp; for(int i=0;i<n;i++){ mp[...
题目
众数 - 清华
题解数量
2
发布题解
热门题解
1
众数 - 清华 题解:
2
请问一下50%通过