当前位置:网站首页>【暑期每日一题】洛谷 P3156 【深基15.例1】询问学号
【暑期每日一题】洛谷 P3156 【深基15.例1】询问学号
2022-08-02 06:07:00 【AC_Dragon】
题目链接:P3156 【深基15.例1】询问学号 - 洛谷 | 计算机科学教育新生态 (luogu.com.cn)
题目描述
有 n(n <= 2×10^6) 名同学陆陆续续进入教室。我们知道每名同学的学号(在 1 到 10^9 之间),按进教室的顺序给出。上课了,老师想知道第 i 个进入教室的同学的学号是什么(最先进入教室的同学 i=1),询问次数不超过 10^5 次。
输入格式
第一行 2 个整数 n 和 m,表示学生个数和询问次数。
第二行 n 个整数,表示按顺序进入教室的学号。
第三行 m 个整数,表示询问第几个进入教室的同学。
输出格式
输出 m 个整数表示答案,用换行隔开。
样例 #1
样例输入 #1
10 3
1 9 2 60 8 17 11 4 5 14
1 5 9样例输出 #1
1
8
5AC code:
#include<iostream>
#include<algorithm>
using namespace std;
const int N = 2e6 + 10;
int a[N];
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
int n,m;
cin>>n>>m;
for(int i=1;i<=n;i++)
cin>>a[i];
while(m--)
{
int x;
cin>>x;
cout<<a[x]<<endl;
}
return 0;
}边栏推荐
- PMP新考纲通关秘籍,告别抓瞎
- mysql索引失效的常见9种原因详解
- APP专项测试:流量测试
- MySQL database video tutorial from beginner to proficient
- MySQL高级SQL语句
- Kind of weird!Access the destination URL, the host can container but not
- HCIP 第三天实验
- The second day HCIP
- odoo field 设置匿名函数domain
- Nacos installation configuration and single-machine deployment tutorial
猜你喜欢

Launch Space on-premises deployment (local) Beta!
![[数据集][VOC]男女数据集voc格式6188张](/img/72/d3e46a820796a48b458cd2d0a18f8f.png)
[数据集][VOC]男女数据集voc格式6188张

Node installation and environment variable configuration

MySQL Advanced - MVCC (ultra-detailed finishing)

See the picture to understand | How to choose sales indicators to measure the health of business growth

zabbix auto-discovery and auto-registration

abaqus如何快速导入其他cae文件的assembly?

Go inside the basic knowledge

APP专项测试:流量测试

CAT1 4G+以太网开发板腾讯云手机微信小程序显示温度和下发控制
随机推荐
Understand C operators in one article
APP special test: traffic test
Vscode连接远程服务器出现‘Acquiring lock on/home/~’问题
MySQL union query (multi-table query)
A detailed introduction to the deployment and usage of the Nacos registry
关于ue4.27像素流送打包后的本地服务器问题
Leetcode周赛304
MySQL - 多表查询与案例详解
Nacos database configuration
Dataset:机器学习中常用数据集下载链接集合之详细攻略
Specified URL is not reachable,caused by :‘Read timed out
postgres 多个变量填充字符串,字串格式化
SphereEx苗立尧:云原生架构下的Database Mesh研发实践
推出 Space On-Premises (本地部署版) Beta 版!
MySQL Advanced Statements (1)
.NET Static Code Weaving - Rougamo Release 1.1.0
node安装及环境变量配置
Difference between npm and yarn
MySQL 5.7 installation tutorial (full-step, nanny-level tutorial)
npm ---- install yarn