#include <iostream>
#include <vector>
#include <list>
#include <unordered_map>
using namespace std;
using ll = long long;
ll DFS(int v,
const vector<vector<int>>& E,
const vector<int>& A,
vector<bool>& V,
vector<vector<ll>>& TW) {
ll S = A[v];
TW[v].push_back(A[v]);
V[v] = true;
vector<int> VV;
for (auto u : E[v]) {
if (!V[u]) {
S += DFS(u, E, A, V, TW);
for (auto tw : TW[u]) {
S += A[v]^tw;
TW[v].push_back(A[v]^tw);
}
for (auto vv : VV) {
for (auto l : TW[u]) {
for (auto r : TW[vv]) {
S += A[v]^l^r;
}
}
}
VV.push_back(u);
}
}
return S;
}
int main(int argc, char* argv[]) {
int n;
cin >> n;
vector<int> A(n + 1);
for (int i = 1; i <= n; i++) {
cin >> A[i];
}
vector<vector<int>> E(n + 1);
for (int i = 0; i < n - 1; i++) {
int u, v;
cin >> u >> v;
E[u].push_back(v);
E[v].push_back(u);
}
{
ll S = 0;
vector<vector<ll>> TW(n + 1);
{
vector<bool> V(n + 1);
S = DFS(1, E, A, V, TW);
}
/*for (int i = 1; i <= n; i++)
cout << "S[" << i << "]=" << S[i] << '\n';*/
cout << S << '\n';
}
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
212 KB |
Output is correct |
2 |
Correct |
1 ms |
212 KB |
Output is correct |
3 |
Correct |
1 ms |
212 KB |
Output is correct |
4 |
Correct |
4 ms |
2132 KB |
Output is correct |
5 |
Correct |
2 ms |
468 KB |
Output is correct |
6 |
Runtime error |
144 ms |
65536 KB |
Execution killed with signal 9 |
7 |
Runtime error |
139 ms |
65536 KB |
Execution killed with signal 9 |
8 |
Runtime error |
174 ms |
65536 KB |
Execution killed with signal 9 |
9 |
Runtime error |
235 ms |
65536 KB |
Execution killed with signal 9 |
10 |
Execution timed out |
1094 ms |
17748 KB |
Time limit exceeded |