如题,以下是我的代码,其中get()是我的构造,get2()是我看有人ac的代码,两个构造出来的数组是一样的。。但是没ac #include <bits/stdc++.h> using namespace std; typedef long long LL; const int N = 1e6 + 10; vector<int> a,b,c; vector<int> a2,b2,c2; // bool vis[5*N]; void get(){ int ai=1,bi=2,ci=4; a.push_back(ai); b.push...