답안 #341969

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
341969 2020-12-31T20:07:50 Z Hazem Deblo (COCI18_deblo) C++14
18 / 90
1000 ms 29184 KB
/*
ID: tmhazem1
LANG: C++14
TASK: pprime
*/

#include <bits/stdc++.h>
using namespace std;

#define S second
#define F first
#define LL long long

const int N = 2e5+10;


LL LINF = 100000000000000000;
LL INF = 1000000000;
int MOD = 1e9+7;

int vals[N],pr[N],par[N][30],depth[N];
vector<int>adj[N];

void dfs(int i,int pre){

    pr[i] = pr[pre]^vals[i];
    par[i][0] = pre;
    for(int j=1;j<=20;j++)
        par[i][j] = par[par[i][j-1]][j-1];

    for(auto x:adj[i])
        if(x!=pre)depth[x] = depth[i]+1,dfs(x,i);
}

int lca(int u,int v){

    if(depth[u]<depth[v])swap(u,v);

    for(int i=20;i>=0;i--)
        if(depth[u]-(1<<i)>=depth[v])
            u = par[u][i];

    if(u==v)return u;

    for(int i=20;i>=0;i--)
        if(par[u][i]!=par[v][i])
            u = par[u][i],v = par[v][i];

    return par[u][0];
}

int main()
{
    // freopen("out.txt","w",stdout);
    int n,ans = 0;
    scanf("%d",&n);

    for(int i=1;i<=n;i++)
        scanf("%d",&vals[i]);

    for(int i=1;i<n;i++){
        int u,v;
        scanf("%d%d",&u,&v);
        adj[u].push_back(v);
        adj[v].push_back(u);
    }

    dfs(1,1);
    for(int i=1;i<=n;i++)
        for(int j=i;j<=n;j++)
            ans += pr[i]^pr[j]^vals[lca(i,j)];

    printf("%d\n",ans);
}       

Compilation message

deblo.cpp: In function 'int main()':
deblo.cpp:56:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   56 |     scanf("%d",&n);
      |     ~~~~~^~~~~~~~~
deblo.cpp:59:14: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   59 |         scanf("%d",&vals[i]);
      |         ~~~~~^~~~~~~~~~~~~~~
deblo.cpp:63:14: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   63 |         scanf("%d%d",&u,&v);
      |         ~~~~~^~~~~~~~~~~~~~
# 결과 실행 시간 메모리 Grader output
1 Correct 3 ms 5100 KB Output is correct
2 Correct 4 ms 5100 KB Output is correct
3 Incorrect 5 ms 5100 KB Output isn't correct
4 Incorrect 46 ms 5228 KB Output isn't correct
5 Incorrect 51 ms 5228 KB Output isn't correct
6 Execution timed out 1101 ms 29184 KB Time limit exceeded
7 Execution timed out 1101 ms 29036 KB Time limit exceeded
8 Execution timed out 1079 ms 24192 KB Time limit exceeded
9 Execution timed out 1101 ms 23532 KB Time limit exceeded
10 Execution timed out 1090 ms 23020 KB Time limit exceeded