Submission #1134856

#TimeUsernameProblemLanguageResultExecution timeMemory
1134856steveonalexLong Mansion (JOI17_long_mansion)C++20
100 / 100
167 ms43344 KiB
#include <bits/stdc++.h>

using namespace std;

typedef long long ll;
typedef unsigned long long ull;

#define MASK(i) (1LL << (i))
#define GETBIT(mask, i) (((mask) >> (i)) & 1)
#define ALL(v) (v).begin(), (v).end()

ll max(ll a, ll b){return (a > b) ? a : b;}
ll min(ll a, ll b){return (a < b) ? a : b;}

ll gcd(ll a, ll b){return __gcd(a, b);}
ll LASTBIT(ll mask){return (mask) & (-mask);}
int pop_cnt(ll mask){return __builtin_popcountll(mask);}
int ctz(ll mask){return __builtin_ctzll(mask);}
int logOf(ll mask){return __lg(mask);}

mt19937_64 rng(chrono::high_resolution_clock::now().time_since_epoch().count());
ll rngesus(ll l, ll r){return l + (ull) rng() % (r - l + 1);}

template <class T1, class T2>
    bool maximize(T1 &a, T2 b){
        if (a < b) {a = b; return true;}
        return false;
    }

template <class T1, class T2>
    bool minimize(T1 &a, T2 b){
        if (a > b) {a = b; return true;}
        return false;
    }

template <class T>
    void printArr(T& container, string separator = " ", string finish = "\n"){
        for(auto item: container) cout << item << separator;
        cout << finish;
    }


template <class T>
    void remove_dup(vector<T> &a){
        sort(ALL(a));
        a.resize(unique(ALL(a)) - a.begin());
    }

void solve(){
    int n; cin >> n;
    vector<int> c(n+1);
    for(int i = 1; i < n; ++i) cin >> c[i];

    vector<vector<int>> a(n+1);
    for(int i = 1; i <= n; ++i){
        int b; cin >> b;
        a[i].resize(b);
        for(int j = 0; j < b; ++j) cin >> a[i][j];
    }

    vector<int> previ(n+1), nxt(n+1, n+1);
    vector<int> last(n+1);
    for(int i = 1; i < n; ++i){
        for(int j: a[i]) last[j] = i;
        previ[i] = last[c[i]];
    }
    last = vector<int>(n+1, n+1);
    for(int i = n; i >= 2; --i){
        for(int j: a[i]) last[j] = i;
        nxt[i-1] = last[c[i-1]];
    }

    vector<int> perm(n);
    for(int i = 0; i < n; ++i) perm[i] = i + 1;
    shuffle(ALL(perm), rng);

    vector<pair<int,int>> ans(n+1);
    for(int i= 1; i <= n; ++i) ans[i] = {i, i};
    for(int i: perm){
        int l = i, r = i;
        while(true){
            int updated = 0;
            updated += minimize(l, min(ans[l].first, ans[r].first));
            updated += maximize(r, max(ans[l].second, ans[r].second));
            if (l > 1){
                if (nxt[l-1] <= r) {
                    l--;
                    updated++;
                }
            }
            if (r < n){
                if (previ[r] >= l){
                    r++;
                    updated++;
                }
            }
            if (updated == false) break;
        }
        ans[i] = {l, r};
    }

    // for(int i = 1; i <=n; ++i) cout << ans[i].first << " " << ans[i].second << "\n";

    int q; cin >> q;
    while(q--){
        int x, y; cin >> x >> y;
        pair<int, int> cur = ans[x];
        if (cur.first <= y && y <= cur.second) cout << "YES\n";
        else cout << "NO\n";
    }
}

int main(void){
    ios::sync_with_stdio(0); cin.tie(0); cout.tie(0);

    clock_t start = clock();

    solve();

    cerr << "Time elapsed: " << clock() - start << "ms!\n";
    return 0;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...