이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#ifndef memset0
#define endl '\n'
#endif
using namespace std;
const int N = 3e3 + 9;
int n, k, q, a[N], ok[N], deg[N];
vector<int> G[N];
bool check(int l, int r) {
// cerr << "check " << l << " " << r << endl;
fill_n(deg + 1, n, 0);
for (int i = 1; i <= n; i++) { G[i].clear(); }
for (int i = l; i < r; i++) {
int x = a[i], y = a[i + 1];
if ((i - l) & 1) swap(x, y);
G[x].push_back(y);
deg[y]++;
// cerr << x << "->" << y << endl;
}
static int q[N];
for (int i = 1; i <= n; i++)
if (!deg[i]) { q[++r] = i; }
while (l <= r) {
int u = q[l++];
for (int v : G[u]) {
--deg[v];
if (!deg[v]) { q[++r] = v; }
}
}
for (int i = 1; i <= n; i++)
if (deg[i]) return false;
return true;
}
int main() {
cin.tie(0)->sync_with_stdio(0);
cin >> n >> k >> q;
for (int i = 1; i <= n; i++) { cin >> a[i]; }
for (int l, r, mid, i = 1; i <= n; i++) {
ok[i] = i, l = i + 1, r = n;
while (l <= r) {
mid = (l + r) >> 1;
if (check(i, mid)) {
ok[i] = mid;
l = mid + 1;
} else {
r = mid - 1;
}
}
}
for (int l, r, i = 1; i <= q; i++) {
cin >> l >> r;
cout << (r <= ok[l] ? "YES" : "NO") << endl;
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |