제출 #1134854

#제출 시각아이디문제언어결과실행 시간메모리
1134854steveonalexLong Mansion (JOI17_long_mansion)C++20
0 / 100
134 ms22544 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<vector<int>> pos_room(n+1);
    vector<vector<int>> pos_door(n+1);
    for(int i = 1; i <= n; ++i) {
        pos_room[i].push_back(0);
        pos_door[i].push_back(0);
    }
    for(int i = 1; i <= n; ++i){
        for(int j: a[i]) pos_room[j].push_back(i);
        if (i < n) {
            pos_door[c[i]].push_back(i);
        }
    }
    for(int i = 1; i <= n; ++i) {
        pos_room[i].push_back(n+1);
        pos_door[i].push_back(n);
    }

    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){
                auto it = lower_bound(ALL(pos_room[c[l-1]]), l);
                if (it != pos_room[c[l-1]].end() && *it <= r){
                    l--;
                    updated++;
                }
            }
            if (r < n){
                auto it = lower_bound(ALL(pos_room[c[r]]), l);
                if (it != pos_room[c[r]].end() && *it <= r){
                    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...