p44军事机密secret.cpp

/*************************************************
File name: // 文件名
Author: NBS//作者
Version:2.2.2 //版本
Date: 20017.02.10// 日期
Description: 军事机密// 用于详细说明此程序文件完成的主要功能,与其他模块
*************************************************/
#include<iostream>
#include<cstdio>
#include<cstring>
#include<cmath>
#include<algorithm>
#include<iomanip>
#include<cstdlib>
using namespace std;

int a[30001],b[30001];
int main()
{
int n,p,o,c=1;
cin>>n;
for(int i=1;i<=n;i++)
{
cin>>a[i];
}
for(int k=1;k<=n;k++)
for(int j=k;j<=n;j++)
{
if(a[k]>a[j])
{
p=a[k];
a[k]=a[j];
a[j]=p;
}
}
cin>>o;
for(int l=1;l<=n;l++)
{
cin>>b[l];
while(b[c]!=0)
{
cout<<a[b[c]]<<endl;
c++;
}
}
return 0;

}

时间: 2024-10-31 10:33:27

p44军事机密secret.cpp的相关文章

HDU6513/CCPC2017--A Secret(KMP)

A Secret Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 256000/256000 K (Java/Others)Total Submission(s): 461    Accepted Submission(s): 182 Problem Description Today is the birthday of SF,so VS gives two strings S1,S2 to SF as a present,whi

INTERESTING AND OBSCURE INHERITANCE ISSUES WITH CPP

1. using 关键字 使用 using 关键字,可以将父类中被隐藏的函数暴露在子类中,但是需要注意的是,在相同情况下,子类函数的优先级更高. 2.  继承构造函数(C++11) 在c++11之前,构造函数.析构函数.赋值操作符,这些都不能被继承.但是,C++11允许我们使用 using 关键字来继承基类的构造函数. 示例1 示例2 3. 重写方法时的特殊情况 1) static 超类方法 在C++中,无法重写静态方法,因为方法不可能既是静态的又是虚的.如果子类中存在的静态方法与超类中的静态方

构造+暴力 Codeforces Round #283 (Div. 2) B. Secret Combination

题目传送门 1 /* 2 构造+暴力:按照题目意思,只要10次加1就变回原来的数字,暴力枚举所有数字,string大法好! 3 */ 4 /************************************************ 5 Author :Running_Time 6 Created Time :2015-8-3 8:43:02 7 File Name :A.cpp 8 *************************************************/ 9 1

微信企业号/企业微信的corpid和secret?

如果要进行微信企业号和企业微信的开发,首先必须知道对应的corpid和secret,因为很多API调用都必须使用这两个参数.典型的API如获取AccessToken的API.下面介绍在哪里查看微信企业号和企业微信的corpid和secret. 一.微信企业号: 1.corpid信息: 点击左侧菜单[设置],点击[企业号信息],下面就可以看到corpid信息了,每个企业号只有一个corpid. 2.secret信息:微信企业号的secret可以有多个,一个消息管理组有一个secret. 点击左侧菜

P3102 [USACO14FEB]秘密代码Secret Code

题目描述 Farmer John has secret message that he wants to hide from his cows; the message is a string of length at least 2 containing only the characters A..Z. To encrypt his message, FJ applies a sequence of "operations" to it, where an operation ap

函数模版和主函数分别在.h .cpp中(要包含.cpp)

Complex.h #pragma once #include<iostream> using namespace std;//这句还必须加,要不然致错,不懂为啥呢 template <typename T> class Complex { public: Complex( T a); ~Complex(); Complex operator + (Complex & c1); public: friend ostream & operator << &

QThread的源码(直接搜索&quot;thread.cpp&quot;即可,或者在github里搜)

void QThread::run() { (void) exec(); } int QThread::exec() { Q_D(QThread); QMutexLocker locker(&d->mutex); d->data->quitNow = false; if (d->exited) { d->exited = false; return d->returnCode; } locker.unlock(); QEventLoop eventLoop; i

Caffe 源碼閱讀(三) caffe.cpp

從main函數說起: 1.gflags庫中爲main函數設置usage信息 是google的一個開源的處理命令行的參數的庫.在使用命令行參數的文件夾文件中(源文件或頭文件),首先使用以下定義語句進行變量的定義. DEFINE_int32, DEFINE_int64, DEFINE_bool等, 語法爲:DEFINE_int32(name,default_value,"description").接着你就可以使用FLAGS_name變量了,這些變量的值則是由命令行參數傳遞,無則爲默認值,

[hge] distort.h distort.cpp

荡漾   --写在开头 在两个文件组合起来要实现的功能就是使得一个画片图水波般荡漾 首先来看头文件中的东西 Chapter I: distort.h Part Ⅰ:attributes private: hgeDistortionMesh(); // 构造函数,话说放在 private 是为了屏蔽这个接口,使得初始化过程中必须有参数 static HGE *hge; // 引擎指针 hgeVertex *disp_array; // 顶点数组 int nRows, nCols; // 行数.列数