# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
758589 | DmitryKh | Deblo (COCI18_deblo) | C++14 | 1086 ms | 51568 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <vector>
#include <list>
#include <unordered_map>
using namespace std;
using ll = long long;
void DFS(int v,
const vector<vector<int>>& E,
const vector<int>& A,
vector<bool>& V,
vector<ll>& S,
vector<ll>& W) {
S[v] = A[v];
W.push_back(A[v]);
V[v] = true;
unordered_map<int, vector<ll>> TW;
for (auto u : E[v]) {
if (!V[u]) {
DFS(u, E, A, V, S, TW[u]);
S[v] += S[u];
for (auto tw : TW[u]) {
S[v] += A[v]^tw;
W.push_back(A[v]^tw);
}
}
}
//cout << "S[" << v << "]=" << S[v] << '\n';
list<int> SS;
for (const auto& p : TW) {
if (!p.second.empty()) {
SS.push_back(p.first);
}
}
while (!SS.empty()) {
int u = SS.back();
SS.pop_back();
const auto& V = TW[u];
for (auto e : SS) {
const auto& E = TW[e];
//cout << v << ": ";
for (auto l : V) {
for (auto r : E) {
//cout << '\t' << A[v] << '^' << l << '^' << r << '\n';
S[v] += A[v]^l^r;
}
}
}
}
}
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);
}
{
vector<ll> S(n + 1);
vector<ll> F2(n + 1);
{
vector<ll> TW;
vector<bool> V(n + 1);
DFS(1, E, A, V, S, TW);
}
/*for (int i = 1; i <= n; i++)
cout << "S[" << i << "]=" << S[i] << '\n';*/
cout << S[1] << '\n';
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |