// Success consists of going from failure to failure without loss of enthusiasm
#include <bits/stdc++.h>
using namespace std;
#define nl '\n'
#define pb push_back
#define sz(x) int(x.size())
#define f first
#define s second
#define mp make_pair
template<class T> using V = vector<T>;
using vi = V<int>;
using pi = pair<int, int>;
using vpi = V<pi>;
const int nax = 2e5+5;
int e[nax];
V<array<int, 4>> his;
void reset(int n) {
his = {};
for(int i = 0; i < n; i++) e[i] = -1;
}
int get(int x) { return e[x] < 0 ? x : e[x] = get(e[x]); }
bool unite(int x, int y) {
x = get(x), y = get(y); if (x == y) return 0;
if (e[x] > e[y]) swap(x, y);
his.pb({x, y, e[x], e[y]});
e[x] += e[y]; e[y] = x; return 1;
}
void roll(int t) {
for(int i = 0; i < t; i++) {
auto [x, y, ex, ey] = his.back(); his.pop_back();
e[x] = ex, e[y] = ey;
}
}
void solve() {
int N, M; cin >> N >> M;
reset(N);
vi A(N); for(auto& x : A) { cin >> x; --x; }
vi B(N); for(auto& x : B) { cin >> x; --x; }
V<vi> ocA(N), ocB(N); for(int i = 0; i < N; i++) {
ocA[A[i]].pb(i);
ocB[B[i]].pb(i);
}
int K = 1; while(K < N) K *= 2;
V<vpi> E(2 * K);
for(int i = 0; i < M; i++) {
int u, v; cin >> u >> v; --u, --v;
int l = max(B[u], B[v]), r = min(A[u], A[v]);
for(l += K, r += K+1; l < r; l /= 2, r /= 2) {
if (l & 1) E[l++].pb(mp(u, v));
if (r & 1) E[--r].pb(mp(u, v));
}
}
int ans = 1;
function<void(int, int, int)> answer = [&](int x, int l, int r) {
// cout << x << " => " << l << " " << r << endl;
int amt = sz(E[x]);
for(auto& e : E[x]) {
// cout << e.f << " " << e.s << endl;
unite(e.f, e.s);
}
if (l == r) {
set<int> has;
for(auto& u : ocA[l]) has.insert(get(u));
for(auto& u : ocB[l]) if (!has.count(get(u))) ans = 0;
} else {
int m = (l + r) / 2;
answer(2 * x, l, m);
answer(2 * x + 1, m + 1, r);
}
roll(amt);
};
answer(1, 0, K - 1);
cout << ans << nl;
}
int main() {
cin.tie(0)->sync_with_stdio(0);
int T; cin >> T; while(T--) {
solve();
}
exit(0-0);
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1 ms |
604 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
305 ms |
524288 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1 ms |
604 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1 ms |
604 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1 ms |
604 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1 ms |
604 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
322 ms |
524288 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1 ms |
604 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |