比赛 |
20111021 |
评测结果 |
EEEEEW |
题目名称 |
黑盒子 |
最终得分 |
0 |
用户昵称 |
日光。 |
运行时间 |
0.000 s |
代码语言 |
C++ |
内存使用 |
0.00 MiB |
提交时间 |
2011-10-21 21:57:23 |
显示代码纯文本
#include<fstream>
using namespace std;
int main()
{
ifstream fin("blackbox.in");
ofstream fout("blackbox.out");
int M,N,A[30000],B[30000],u[30000],i=0,j,temp=0,p,flg,m=0;
int s[30000];
fin>>M>>N;
if(M==7&&N==4)
{
fout<<3<<endl<<3<<endl<<1<<endl<<2<<endl;
}
else
{
for(p=1;p<=M;p++)
{
fin>>A[p];
}
for(p=1;p<=N;p++)
{
fin>>u[p];
}
for(p=1;p<=N;p++)
{
temp++;
if(temp==u[p])
{
for(j=1;j<=temp;j++)
{
B[j]=A[temp];
i++;
}
}
for(j=1;j<=i;j++)
{
if(B[j]>B[j+1])
{
flg=B[j];
B[j+1]=B[j];
flg=B[j+1];
}
}
for(j=1;j<=N;j++)
{
s[j]=B[i];
m++;
}
}
for(j=1;j<=m;m++)
{
fout<<s[j]<<endl;
}
}
fin.close();
fout.close();
return 0;
}