Submission #730857

# Submission time Handle Problem Language Result Execution time Memory
730857 2023-04-26T14:32:11 Z PoonYaPat Werewolf (IOI18_werewolf) C++14
15 / 100
4000 ms 70280 KB
#include "werewolf.h"
#include <bits/stdc++.h>
using namespace std;
typedef pair<int,int> pii;

int p[200001],r[200001],cnt,in[200001],out[200001],pa[2][200001],va[2][200001],c[200001],top[2];
vector<int> adj[200001];
vector<pii> Adj[2][200001];

int find(int x) {
    while (x!=p[x]) x=p[x];
    return x;
}

void unite(int x, int y, int val, int mode) {
    x=find(x); y=find(y);
    if (x==y) return;

    if (r[x]>r[y]) {
        p[y]=x;
        Adj[mode][x].push_back(pii(y,val));
    } else if (r[x]<r[y]) {
        p[x]=y;
        Adj[mode][y].push_back(pii(x,val));
    } else {
        p[x]=y; ++r[y];
        Adj[mode][y].push_back(pii(x,val));
    }
}

int f0(int x, int bound) {
    if (bound>=va[0][x]) {
        while (x!=pa[0][x] && va[0][pa[0][x]]<=bound) x=pa[0][x];
        x=pa[0][x];
    }

    int l=0,r=Adj[0][x].size()-1;
    if (r==-1) return -1;
    if (Adj[0][x][0].second>bound) return -1;

    while (l<r) { //find the last element that not over bound
        int mid=(l+r+1)/2;
        if (Adj[0][x][mid].second<=bound) l=mid;
        else r=mid-1;
    }

    return Adj[0][x][l].first;
}

int f1(int x, int bound) {
    if (bound<=va[1][x]) {
        while (x!=pa[1][x] && va[1][pa[1][x]]>=bound) x=pa[1][x];
        x=pa[1][x];
    }

    int l=0,r=Adj[1][x].size()-1;
    if (r==-1) return -1;
    if (Adj[1][x][0].second<bound) return -1;

    while (l<r) { //find the last element that at least bound
        int mid=(l+r+1)/2;
        if (Adj[1][x][mid].second>=bound) l=mid;
        else r=mid-1;
    }

    return Adj[1][x][l].first;
}

void dfs(int x, int par, int mode) { //dfs in werewolf
    pa[mode][x]=par;
    if (!mode) c[x]=++cnt,in[x]=c[par];

    for (auto s : Adj[mode][x]) {
        va[mode][s.first]=s.second;
        dfs(s.first,x,mode);
    }

    if (!mode) out[x]=cnt;
}

struct N {
    int in,out,idx;
};
vector<N> v[200001];
vector<int> temp[200001],ans;

void dfs_ans(int x) { //find answer in human
    temp[x].push_back(c[x]);

    for (auto k : Adj[1][x]) {
        int s=k.first;
        dfs_ans(s);

        if (temp[x].size()<temp[s].size()) swap(temp[s],temp[x]);

        vector<int> t;
        int i=0,j=0;

        while (i<temp[x].size() && j<temp[s].size()) {
            if (temp[x][i]<=temp[s][j]) t.push_back(temp[x][i]), ++i;
            else t.push_back(temp[s][j]), ++j;
        }

        while (i<temp[x].size()) t.push_back(temp[x][i]), ++i;
        while (j<temp[s].size()) t.push_back(temp[s][j]), ++j;

        swap(t,temp[x]);

        for (auto h : v[s]) {
            if ((int)(upper_bound(temp[x].begin(),temp[x].end(),h.out)-upper_bound(temp[x].begin(),temp[x].end(),h.in-1))>0) ans[h.idx]=1;
            else ans[h.idx]=0;
        }
    }
}

vector<int> check_validity(int n, vector<int> X, vector<int> Y, vector<int> S, vector<int> E, vector<int> L, vector<int> R) {
    for (int i=0; i<X.size(); ++i) {
        adj[X[i]].push_back(Y[i]);
        adj[Y[i]].push_back(X[i]);
    }
    for (int i=0; i<S.size(); ++i) ans.push_back(0);

    for (int i=0; i<n; ++i) p[i]=i,r[i]=1;
    for (int i=0; i<n; ++i) { //werewolf
        for (auto s : adj[i]) {
            if (s<i) unite(i,s,i,0);
        }
    }
    top[0]=find(0);
    va[0][top[0]]=n-1;
    dfs(top[0],top[0],0);

    for (int i=0; i<n; ++i) p[i]=i,r[i]=1;
    for (int i=n-1; i>=0; --i) { //human
        for (auto s : adj[i]) {
            if (s>i) unite(i,s,i,1);
        }
    }
    top[1]=find(0);
    dfs(top[1],top[1],1);

    for (int i=0; i<S.size(); ++i) {
        if (S[i]<L[i] || E[i]>R[i]) ans[i]=0;
        else {
            int s=f1(S[i],L[i]), e=f0(E[i],R[i]);

            if (s==-1 && e==-1) ans[i]=0;
            else if (s==-1) {
                if (c[S[i]]>=in[e] && c[S[i]]<=out[e]) ans[i]=1;
                else ans[i]=0;
            } else if (e==-1) v[s].push_back({c[E[i]],c[E[i]],i});
            else v[s].push_back({in[e],out[e],i});
        }
    }

    Adj[1][n].push_back({top[1],0});
    dfs_ans(n);

    return ans;
}

Compilation message

werewolf.cpp: In function 'void dfs_ans(int)':
werewolf.cpp:99:17: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   99 |         while (i<temp[x].size() && j<temp[s].size()) {
      |                ~^~~~~~~~~~~~~~~
werewolf.cpp:99:37: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   99 |         while (i<temp[x].size() && j<temp[s].size()) {
      |                                    ~^~~~~~~~~~~~~~~
werewolf.cpp:104:17: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
  104 |         while (i<temp[x].size()) t.push_back(temp[x][i]), ++i;
      |                ~^~~~~~~~~~~~~~~
werewolf.cpp:105:17: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
  105 |         while (j<temp[s].size()) t.push_back(temp[s][j]), ++j;
      |                ~^~~~~~~~~~~~~~~
werewolf.cpp: In function 'std::vector<int> check_validity(int, std::vector<int>, std::vector<int>, std::vector<int>, std::vector<int>, std::vector<int>, std::vector<int>)':
werewolf.cpp:117:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
  117 |     for (int i=0; i<X.size(); ++i) {
      |                   ~^~~~~~~~~
werewolf.cpp:121:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
  121 |     for (int i=0; i<S.size(); ++i) ans.push_back(0);
      |                   ~^~~~~~~~~
werewolf.cpp:142:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
  142 |     for (int i=0; i<S.size(); ++i) {
      |                   ~^~~~~~~~~
# Verdict Execution time Memory Grader output
1 Correct 13 ms 23856 KB Output is correct
2 Correct 13 ms 23780 KB Output is correct
3 Correct 13 ms 23852 KB Output is correct
4 Correct 13 ms 23764 KB Output is correct
5 Correct 13 ms 23816 KB Output is correct
6 Correct 13 ms 23764 KB Output is correct
7 Correct 12 ms 23740 KB Output is correct
8 Correct 12 ms 23752 KB Output is correct
9 Correct 13 ms 23776 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 13 ms 23856 KB Output is correct
2 Correct 13 ms 23780 KB Output is correct
3 Correct 13 ms 23852 KB Output is correct
4 Correct 13 ms 23764 KB Output is correct
5 Correct 13 ms 23816 KB Output is correct
6 Correct 13 ms 23764 KB Output is correct
7 Correct 12 ms 23740 KB Output is correct
8 Correct 12 ms 23752 KB Output is correct
9 Correct 13 ms 23776 KB Output is correct
10 Correct 25 ms 24392 KB Output is correct
11 Correct 25 ms 24480 KB Output is correct
12 Correct 20 ms 24404 KB Output is correct
13 Correct 21 ms 24416 KB Output is correct
14 Correct 21 ms 24444 KB Output is correct
15 Correct 19 ms 24464 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 618 ms 70280 KB Output is correct
2 Execution timed out 4096 ms 67004 KB Time limit exceeded
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 13 ms 23856 KB Output is correct
2 Correct 13 ms 23780 KB Output is correct
3 Correct 13 ms 23852 KB Output is correct
4 Correct 13 ms 23764 KB Output is correct
5 Correct 13 ms 23816 KB Output is correct
6 Correct 13 ms 23764 KB Output is correct
7 Correct 12 ms 23740 KB Output is correct
8 Correct 12 ms 23752 KB Output is correct
9 Correct 13 ms 23776 KB Output is correct
10 Correct 25 ms 24392 KB Output is correct
11 Correct 25 ms 24480 KB Output is correct
12 Correct 20 ms 24404 KB Output is correct
13 Correct 21 ms 24416 KB Output is correct
14 Correct 21 ms 24444 KB Output is correct
15 Correct 19 ms 24464 KB Output is correct
16 Correct 618 ms 70280 KB Output is correct
17 Execution timed out 4096 ms 67004 KB Time limit exceeded
18 Halted 0 ms 0 KB -