Submission #940114

#TimeUsernameProblemLanguageResultExecution timeMemory
940114Trisanu_DasBeech Tree (IOI23_beechtree)C++17
22 / 100
105 ms60056 KiB
#include <beechtree.h> #include <bits/stdc++.h> using namespace std; #define pb push_back #define all(x) x.begin(), x.end() const int N = 2e5+100; int sz[N]; vector<array<int, 2>> g[N]; vector<int> ans; set<int> C[N]; void dfs(int v){ ans[v] = 1; sz[v] = 1; for(auto U: g[v]){ int u = U[0], c = U[1]; dfs(u); sz[v] += sz[u]; ans[v] &= ans[u]; if(C[v].find(c) != C[v].end()) ans[v] = 0; C[v].insert(c); } if(ans[v] == 0) return; sort(all(g[v]), [&](const array<int, 2> &x, const array<int, 2> &y){ return sz[x[0]] > sz[y[0]]; }); for(int i = 0; i < g[v].size(); ++i){ int x = (i == 0 ? v : g[v][i - 1][0]), y = g[v][i][0]; for(auto col: C[y]){ if(C[x].find(col) == C[x].end()){ ans[v] = 0; break; } } } } vector<int> beechtree(int n, int m, vector<int> P, vector<int> C){ for(int i = 1; i < n; ++i) g[P[i]].pb({i, C[i]}); ans.resize(n); dfs(0); return ans; }

Compilation message (stderr)

beechtree.cpp: In function 'void dfs(int)':
beechtree.cpp:28:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::array<int, 2> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   28 |  for(int i = 0; i < g[v].size(); ++i){
      |                 ~~^~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...