3148. 线性表比较

改个名字吧

题意似乎表述有误 j不一定大于0

我太难了

其实用vector可以直接比较大小

#include <bits/stdc++.h>
using namespace std;

int main(){
    int m, n, t;
    vector<int> x, y;
    cin >> m >> n;
    while(m--){
        cin >> t;
        x.push_back(t);
    }
    while(n--){
        cin >> t;
        y.push_back(t);
    }
    if(x<y) cout << -1;
    else if(x>y) cout << 1;
    else cout << 0;
}
你当前正在回复 博客/题目
存在问题!