/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 6ms 8.816 MiB
#2 Accepted 5ms 6.316 MiB
#3 Accepted 5ms 5.508 MiB
#4 Accepted 5ms 8.762 MiB
#5 Accepted 5ms 8.777 MiB
#6 Accepted 294ms 27.898 MiB
#7 Accepted 272ms 27.957 MiB
#8 Accepted 359ms 27.992 MiB
#9 Accepted 357ms 27.855 MiB
#10 Accepted 254ms 27.938 MiB
#11 Accepted 239ms 27.879 MiB
#12 Accepted 212ms 27.887 MiB
#13 Accepted 217ms 27.938 MiB
#14 Accepted 225ms 27.996 MiB
#15 Accepted 203ms 27.891 MiB
#16 Accepted 194ms 27.875 MiB
#17 Accepted 186ms 27.77 MiB
#18 Accepted 191ms 27.82 MiB
#19 Accepted 185ms 27.961 MiB
#20 Accepted 180ms 27.992 MiB
#21 Accepted 377ms 28.008 MiB
#22 Accepted 194ms 30.75 MiB
#23 Accepted 167ms 30.617 MiB
#24 Accepted 164ms 30.734 MiB
#25 Accepted 162ms 30.711 MiB
#26 Accepted 169ms 30.648 MiB
#27 Accepted 168ms 30.816 MiB
#28 Accepted 201ms 29.895 MiB
#29 Accepted 225ms 29.938 MiB
#30 Accepted 211ms 29.969 MiB
#31 Accepted 134ms 33.215 MiB
#32 Accepted 146ms 33.289 MiB
#33 Wrong Answer 157ms 29.035 MiB
#34 Wrong Answer 155ms 29.027 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() <= 19999) {
            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:39:09
Judged At
2024-12-09 05:39:09
Judged By
Score
97
Total Time
377ms
Peak Memory
33.289 MiB