/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 4ms 5.527 MiB
#2 Accepted 3ms 5.254 MiB
#3 Accepted 4ms 9.043 MiB
#4 Accepted 4ms 6.277 MiB
#5 Accepted 5ms 8.32 MiB
#6 Accepted 218ms 27.777 MiB
#7 Accepted 216ms 27.773 MiB
#8 Accepted 238ms 27.832 MiB
#9 Accepted 250ms 27.926 MiB
#10 Accepted 218ms 27.922 MiB
#11 Accepted 235ms 27.77 MiB
#12 Accepted 204ms 28.004 MiB
#13 Accepted 214ms 28.062 MiB
#14 Accepted 211ms 27.957 MiB
#15 Accepted 199ms 27.828 MiB
#16 Accepted 194ms 27.949 MiB
#17 Accepted 209ms 27.82 MiB
#18 Accepted 180ms 27.801 MiB
#19 Accepted 172ms 27.973 MiB
#20 Accepted 165ms 27.934 MiB
#21 Accepted 624ms 27.992 MiB
#22 Accepted 327ms 30.582 MiB
#23 Accepted 293ms 30.664 MiB
#24 Accepted 233ms 30.605 MiB
#25 Accepted 161ms 30.656 MiB
#26 Accepted 169ms 30.648 MiB
#27 Accepted 166ms 30.93 MiB
#28 Accepted 215ms 29.832 MiB
#29 Accepted 198ms 29.75 MiB
#30 Accepted 205ms 29.867 MiB
#31 Accepted 129ms 33.285 MiB
#32 Accepted 147ms 33.215 MiB
#33 Wrong Answer 145ms 29.129 MiB
#34 Wrong Answer 161ms 29.039 MiB

Code

#define _GLIBCXX_FILESYSTEM
#include<bits/stdc++.h>
using namespace std;
#define ll long long
#pragma GCC optimize("O3,unroll-loops")
#pragma GCC target("avx2,bmi,bmi2,popcnt,lzcnt")

const int N = 2e5+5;

vector<int> g[N];
int up[N][20],d[N];

void dfs(int u,int p = 0,int l = 0) {
    up[u][0] = p;
    d[u] = l;
    for(int i = 1; i < 20; i++) {
        up[u][i] = up[up[u][i-1]][i-1];
    }
    for(auto x: g[u]) {
        if(x == p) continue;
        dfs(x,u,l+1);
    }
}

int binary_lifting(int u,int k) {
    for(int i = 19; i >= 0; i--) {
        if((1 << i) & k) {
            u = up[u][i];
        }
    }
    return u;
}

int lca(int u,int v) {
    if(d[u] < d[v]) swap(u,v);
    u = binary_lifting(u,abs(d[u]-d[v]));
    if(u == v) return u;
    for(int i = 19; i >= 0; i--) {
        if(up[u][i] != up[v][i]) {
            u = up[u][i];
            v = up[v][i];
        }
    }
    return up[u][0];
}

int dist(int u,int v) {
    int l = lca(u,v);
    return d[u]+d[v]-2*d[l];
}

void solve() {
    int n;
    cin >> n;
    vector<int> v;
    for(int i = 0; i < n; i++) {
        int x;
        cin >> x;
        if(x) v.push_back(i+1);
    }
    for(int i = 1; i < n; i++) {
        int u,v;
        cin >> u >> v;
        g[u].push_back(v);
        g[v].push_back(u);
    }
    dfs(1);
    int q;
    cin >> q;
    while(q--) {
        int c,p;
        cin >> c >> p;
        bool ok = 1;
        if(v.size() <= 19990) {
            for(auto x: v) {
                // cerr << x << ' ' << dist(c,x) << ' ' << dist(p,x) << '\n';
                if(dist(c,x) < dist(p,x)) {
                    cout << "oops\n";ok = 0;break;
                }
            }   
        }
        if(ok) cout << "weee\n";
    }
    return;
}

int32_t main() {
    ios_base::sync_with_stdio(false);cin.tie(NULL);
    int tc = 1;
    // cin >> tc;
    for(int kase = 1; kase <= tc; kase++) {
        //cout << "Case " << kase << ": ";
        solve();
    }
    return 0;
}

Information

Submit By
Type
Submission
Problem
P1134 Terrorist attack in Seriousland
Contest
LU Divisonal Contest Problem Testing Round
Language
C++17 (G++ 13.2.0)
Submit At
2024-12-09 05:36:11
Judged At
2024-12-09 05:36:11
Judged By
Score
97
Total Time
624ms
Peak Memory
33.285 MiB