/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 4ms 9.027 MiB
#2 Accepted 4ms 8.277 MiB
#3 Accepted 6ms 8.281 MiB
#4 Accepted 7ms 7.141 MiB
#5 Accepted 4ms 8.242 MiB
#6 Accepted 220ms 27.75 MiB
#7 Accepted 214ms 27.996 MiB
#8 Accepted 211ms 27.832 MiB
#9 Accepted 223ms 27.898 MiB
#10 Accepted 226ms 27.77 MiB
#11 Accepted 231ms 27.82 MiB
#12 Accepted 204ms 28.016 MiB
#13 Accepted 205ms 27.77 MiB
#14 Accepted 206ms 27.77 MiB
#15 Accepted 198ms 28.02 MiB
#16 Accepted 197ms 27.816 MiB
#17 Accepted 179ms 27.762 MiB
#18 Accepted 169ms 27.945 MiB
#19 Accepted 166ms 27.887 MiB
#20 Accepted 156ms 27.934 MiB
#21 Accepted 383ms 28.07 MiB
#22 Accepted 177ms 30.805 MiB
#23 Accepted 160ms 30.656 MiB
#24 Accepted 162ms 31.02 MiB
#25 Accepted 198ms 30.574 MiB
#26 Accepted 170ms 30.719 MiB
#27 Accepted 156ms 30.75 MiB
#28 Accepted 202ms 29.77 MiB
#29 Accepted 201ms 29.961 MiB
#30 Accepted 195ms 29.809 MiB
#31 Accepted 128ms 33.16 MiB
#32 Accepted 151ms 33.16 MiB
#33 Wrong Answer 159ms 29.004 MiB
#34 Wrong Answer 148ms 29.246 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() <= 19997) {
            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:38:08
Judged At
2024-12-09 05:38:08
Judged By
Score
97
Total Time
383ms
Peak Memory
33.16 MiB