博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
poj2028
阅读量:6195 次
发布时间:2019-06-21

本文共 758 字,大约阅读时间需要 2 分钟。

简单题

View Code
#include 
#include
#include
#include
using namespace std;#define maxd 105int n, q;int f[maxd];void input(){ memset(f, 0, sizeof(f)); for (int i = 0; i < n; i++) { int num; scanf("%d", &num); for (int j = 0; j < num; j++) { int a; scanf("%d", &a); f[a]++; } }}void work(){ int temp = 0; for (int i = 0; i <= 100; i++) { if (f[i] > f[temp]) temp = i; } if (f[temp] < q) printf("0\n"); else printf("%d\n", temp);}int main(){ //freopen("t.txt", "r", stdin); while (scanf("%d%d", &n, &q), n | q) { input(); work(); } return 0;}

 

转载地址:http://xfyca.baihongyu.com/

你可能感兴趣的文章
javascript 常用技巧
查看>>
Mysql常用命令行大全
查看>>
算法练手 快排,堆排序,插入排序, 二分查找
查看>>
Java8新特性值Lambda --->匿名函数
查看>>
颜色对比比率计算
查看>>
算法整理-并查集和分治
查看>>
可能是最漂亮的Spring事务管理详解 专题
查看>>
Django学习【补充篇】:Django之MOdel进阶(QuerySet介绍以及这整体插入,中介模型等)...
查看>>
URAL 1932 The Secret of Identifier 题解
查看>>
jquery常用技巧拾贝
查看>>
[javaSE] GUI(事件监听机制)
查看>>
RSA加密的测试demo
查看>>
android 手机网络接入点名称及WAP、NET模式的区别
查看>>
向上取整和向下取整
查看>>
C#实现短链接生成服务
查看>>
KVM虚拟化技术简介
查看>>
学习地址
查看>>
anroid中ScrollView嵌套ListView
查看>>
mysql备份与恢复
查看>>
Python3学习笔记(一): 环境安装
查看>>