提交时间:2019-11-29 21:16:24
运行 ID: 2548
#include<iostream> using namespace std; int main(){ int n,m,max=0; int apple[101],c[101]; cin>>n>>m; for(int i=1;i<=n;i++){ cin>>apple[i]; } for(int i=1;i<=m;i++){ cin>>c[i]; } for(int i=1;i<=n;i++){ for(int j=1;j<=n-1;j++){ if(apple[j]>apple[j+1]){ int t=apple[j]; apple[j]=apple[j+1]; apple[j+1]=t; } } } for(int j=1;j<=m-1;j++){ for(int j=1;j<=m-1;j++){ if(c[j]>c[j+1]){ int t=c[j]; c[j]=c[j+1]; c[j+1]=t; } } } int k=1; for(int i=1;i<=n;j++){ int times=0; for(int j=k;j<=n;j++){ if(times==2) break; if(c[i]>=apple[j]){ max++; k++; times++; } } } cout<<max; return 0; }