比赛 |
2024暑期C班集训2 |
评测结果 |
AAAAAAAAAA |
题目名称 |
筹办模拟赛 |
最终得分 |
100 |
用户昵称 |
wdsjl |
运行时间 |
0.000 s |
代码语言 |
C++ |
内存使用 |
0.00 MiB |
提交时间 |
2024-07-02 09:42:00 |
显示代码纯文本
#include <bits/stdc++.h>
using namespace std;
const int N = 110;
int a[N],b[N],n;
int main(){
freopen("proposal.in","r",stdin);
freopen("proposal.out","w",stdout);
scanf("%d",&n);
for(int i=1;i<=n;i++)scanf("%d",&a[i]);
for(int i=1;i<=n;i++)scanf("%d",&b[i]);
int pos_b=n;
int pos_a=n;
while(pos_a){
if(a[pos_a]>b[pos_b])pos_a--;
else {
pos_a--;
pos_b--;
}
}
cout<<pos_b;
return 0;
}