比赛 2024暑期C班集训2 评测结果 AAAAAAAAAA
题目名称 筹办模拟赛 最终得分 100
用户昵称 darkMoon 运行时间 0.000 s
代码语言 C++ 内存使用 0.00 MiB
提交时间 2024-07-02 08:27:00
显示代码纯文本
#include<bits/stdc++.h>
#define int long long
using namespace std;
ifstream fin("proposal.in");
ofstream fout("proposal.out");
auto mread = [](){int x;fin >> x;return x;};
const int N = 105;
int n = mread(), a[N], b[N];
signed main(){
    for(int i = 1; i <= n; i ++)
    a[i] = mread();
    for(int i = 1; i <= n; i ++)
    b[i] = mread();
    for(int i = 0; i <= n; i ++){
        int e = 1;
        for(int j = i + 1; j <= n; j ++){
            if(a[j - i] > b[j])
            e = 0;
        }
        if(e){
            fout << i;
            return 0;
        }
    }
    return 0;
}