当前位置:网站首页>【暑期每日一题】洛谷 P5886 Hello, 2020!
【暑期每日一题】洛谷 P5886 Hello, 2020!
2022-07-01 04:47:00 【AC_Dragon】
题目链接:P5886 Hello, 2020! - 洛谷 | 计算机科学教育新生态 (luogu.com.cn)
题目背景
时针与分针重合在「零」的那一霎那,嘀嗒声便宣告了新一年的到来。
在过去的一年里,世事无常。屏幕面前的你可能不久前才听闻「OI」,也可能暂时地结束了竞赛生涯;可能在赛场上叱咤风云名列榜首,也可能独自承受着比赛失利的落寞。
无论如何,过去仍旧是过去,将来依然是将来。
以此题为开端,迎接你的 2020 吧!
题目描述
输入格式
输出格式
样例 #1
样例输入 #1
4 3 2
2 2 3
1 1
3 1 2 3
2 1 3
样例输出 #1
1
2
提示
AC code:
#include<iostream>
#include<algorithm>
#include<vector>
using namespace std;
const int N = 1e6+10;
int a[N];
int main()
{
int n,m,p;
cin>>n>>m>>p;
while(n--)
{
int t;
cin>>t;
while(t--)
{
int x;
cin>>x;
a[x]++;
}
}
vector<int> res;
for(int i=1;i<=m;i++) // 注意此时范围必须为 1~m ,否则测试点无法通过!!!
if(a[i]==p)
res.push_back(i);
// sort(res.begin(),res.end()); // 在放入res容器时已经是按照序号从小到大放入,因此无需再进行排序。
cout<<res.size()<<endl;
for(int i:res)
cout<<i<<" "; // 注意输出格式!!!
return 0;
}
边栏推荐
- C - detailed explanation of operators and summary of use cases
- 2022 question bank and answers for safety production management personnel of hazardous chemical production units
- 常用的Transforms中的方法
- Shell analysis server log command collection
- CF1638E. Colorful operations Kodori tree + differential tree array
- 【FTP】FTP常用命令,持续更新中……
- Solve the problem that the external chain file of Qiankun sub application cannot be obtained
- VIM easy to use tutorial
- STM32扩展板 温度传感器和温湿度传感器的使用
- 分布式架构系统拆分原则、需求、微服务拆分步骤
猜你喜欢
【硬十宝典】——2.【基础知识】开关电源各种拓扑结构的特点
Question bank and answers for chemical automation control instrument operation certificate examination in 2022
Dede collection plug-in does not need to write rules
神经网络-非线性激活
VIM简易使用教程
Simple implementation of slf4j
Fitness without equipment
Execution failed for task ‘:app:processDebugResources‘. > A failure occurred while executing com. and
Kodori tree board
Applications and features of VR online exhibition
随机推荐
【硬十宝典目录】——转载自“硬件十万个为什么”(持续更新中~~)
js解决浮点数相乘精度丢失问题
STM32 extended key scan
分布式锁的实现
Maixll dock quick start
LeetCode_66(加一)
LeetCode_35(搜索插入位置)
2022 tea master (intermediate) examination question bank and tea master (intermediate) examination questions and analysis
Codeworks round 449 (Div. 1) C. Kodori tree template
Shell之分析服务器日志命令集锦
Research on medical knowledge atlas question answering system (I)
Registration for R2 mobile pressure vessel filling test in 2022 and R2 mobile pressure vessel filling free test questions
VIM简易使用教程
无器械健身
Pytorch(四) —— 可视化工具 Visdom
RDF query language SPARQL
All in all, the low code still needs to solve these four problems
Take a cold bath
LeetCode_ 53 (maximum subarray and)
Shell analysis server log command collection