Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
8051 账号已注销 公交换乘站 C++ 解答错误 0 0 MS 256 KB 708 2020-10-31 14:47:22

Tests(0/5):


#include<bits/stdc++.h> using namespace std; int main(){ int a[101]={0},b[101]={0},c[101]={0}; int m,n,k=1; cin>>m>>n; for(int i=1;i<=m;i++){ cin>>a[i]; } for(int i=1;i<=n;i++){ cin>>b[i]; } for(int i=1;i<=m;i++){ for(int j=1;j<=n;j++){ if(a[i]==b[j]){ c[k]=a[i]; k++; } } } sort(c+1,c+k+1); if(k==1){ cout<<-1; }else{ for(int i=1;i<k;i++){ cout<<c[i+1]<<' '; } } // for(int i=1;i<=m;i++){ // for(int j=1;j<=n;j++){ // if(c[j]>c[j+1]){ // int t=c[j]; // c[j]=c[j+1]; // c[j+1]=t; // } // } // } // if(k==0){ // cout<<-1; // }else{ // for(int i=1;i<=k;i++){ // cout<<c[i]<<' '; // } // } return 0; }


测评信息: