Submission #843411

#TimeUsernameProblemLanguageResultExecution timeMemory
843411TranGiaHuy1508Factories (JOI14_factories)C++17
Compilation error
0 ms0 KiB
// Credit: CDuongg #include "factories.h" #include <bits/stdc++.h> #define taskname "" #define all(x) x.begin(), x.end() #define rall(x) x.rbegin(), x.rend() #define ll long long #define ld long double #define pb push_back #define ff first #define ss second #define pii pair<int, int> #define vi vector<int> #define vll vector<ll> #define vvi vector<vi> #define vii vector<pii> #define isz(x) (int)x.size() using namespace std; const int mxN = 5e5 + 5; const ll oo = 1e18; int n; vector<vii> G; vi vtn; vector<vector<pair<int, ll>> vt; ll dis[mxN]; pii sparse[21][2 * mxN]; int timer, ecnt, ap[mxN], dep[mxN], cur[mxN], tin[mxN], tout[mxN]; void dfs(int v, int p) { tin[v] = ++timer; dep[v] = dep[p] + 1; sparse[0][++ecnt] = {dep[v], v}; ap[v] = ecnt; for(auto &[u, w] : G[v]) { if(u == p) continue; dis[u] = dis[v] + w; dfs(u, v); sparse[0][++ecnt] = {dep[v], v}; } tout[v] = ++timer; } void build_sparse() { for(int p = 1, i = 1; p << 1 <= ecnt; p <<= 1, ++i) for(int j = 1; j <= ecnt - (p << 1) + 1; ++j) sparse[i][j] = min(sparse[i - 1][j], sparse[i - 1][j + p]); } bool is_ancestor(int u, int v) { return tin[u] <= tin[v] && tout[u] >= tout[v]; } int LCA(int u, int v) { int l = ap[u], r = ap[v]; if(l > r) swap(l, r); int len = r - l + 1, lg_len = __lg(len); return min(sparse[lg_len][l], sparse[lg_len][r - (1 << lg_len) + 1]).ss; } void Init(int N, int A[], int B[], int D[]) { n = N; G.resize(n); vt.resize(n); for(int i = 0; i < N - 1; ++i) { G[A[i]].emplace_back(B[i], D[i]); G[B[i]].emplace_back(A[i], D[i]); } dfs(0, 0); build_sparse(); } long long Query(int S, int X[], int T, int Y[]) { queue<pii> q; for(int i = 0; i < S; ++i) { cur[X[i]] = 1; q.emplace(X[i], 0); vtn.emplace_back(X[i]); } for(int i = 0; i < T; ++i) { cur[Y[i]] = 2; vtn.emplace_back(Y[i]); } sort(all(vtn), [&](int u, int v) { return tin[u] < tin[v]; }); for(int i = 0; i < S + T - 1; ++i) { vtn.emplace_back(LCA(vtn[i], vtn[i + 1])); } sort(all(vtn), [&](int u, int v) { return tin[u] < tin[v]; }); vtn.erase(unique(all(vtn)), vtn.end()); auto add_vt = [&](int u, int v, ll w) { vt[u].emplace_back(v, w); vt[v].emplace_back(u, w); }; stack<int> s; for(int i = 0; i < isz(vtn); ++i) { while(not s.empty() && not is_ancestor(s.top(), vtn[i])) s.pop(); if(s.empty()) s.emplace(vtn[i]); else { add_vt(s.top(), vtn[i], dis[vtn[i]] - dis[s.top()]); s.emplace(vtn[i]); } } ll res = oo; auto dfs1 = [&](auto self, int v, int p) -> vll { vll cur_dis(2, oo); if(cur[v]) cur_dis[cur[v] - 1] = 0; for(auto &[u, w] : vt[v]) { if(u == p) continue; vll tmp = self(self, u, v); for(int i = 0; i < 2; ++i) cur_dis[i] = min(cur_dis[i], tmp[i] + w); } res = min(res, accumulate(all(cur_dis), 0LL)); return cur_dis; }; dfs1(dfs1, vtn[0], 0); for(int i = 0; i < S; ++i) { cur[X[i]] = 0; vt[X[i]].clear(); } for(int i = 0; i < T; ++i) { cur[Y[i]] = 0; vt[Y[i]].clear(); } for (auto i: vtn) vt[i].clear(); vtn.clear(); return res; }

Compilation message (stderr)

factories.cpp:28:30: error: template argument 1 is invalid
   28 | vector<vector<pair<int, ll>> vt;
      |                              ^~
factories.cpp:28:30: error: template argument 2 is invalid
factories.cpp: In function 'void Init(int, int*, int*, int*)':
factories.cpp:69:18: error: 'vt' was not declared in this scope; did you mean 'vtn'?
   69 |     G.resize(n); vt.resize(n);
      |                  ^~
      |                  vtn
factories.cpp: In lambda function:
factories.cpp:104:9: error: 'vt' was not declared in this scope; did you mean 'vtn'?
  104 |         vt[u].emplace_back(v, w);
      |         ^~
      |         vtn
factories.cpp: In lambda function:
factories.cpp:123:28: error: 'vt' was not declared in this scope; did you mean 'vtn'?
  123 |         for(auto &[u, w] : vt[v]) {
      |                            ^~
      |                            vtn
factories.cpp: In function 'long long int Query(int, int*, int, int*)':
factories.cpp:137:9: error: 'vt' was not declared in this scope; did you mean 'vtn'?
  137 |         vt[X[i]].clear();
      |         ^~
      |         vtn
factories.cpp:141:9: error: 'vt' was not declared in this scope; did you mean 'vtn'?
  141 |         vt[Y[i]].clear();
      |         ^~
      |         vtn
factories.cpp:143:23: error: 'vt' was not declared in this scope; did you mean 'vtn'?
  143 |     for (auto i: vtn) vt[i].clear();
      |                       ^~
      |                       vtn
factories.cpp: In instantiation of 'Query(int, int*, int, int*)::<lambda(auto:23, int, int)> [with auto:23 = Query(int, int*, int, int*)::<lambda(auto:23, int, int)>]':
factories.cpp:133:25:   required from here
factories.cpp:124:16: error: use of 'u' before deduction of 'auto'
  124 |             if(u == p) continue;
      |                ^
factories.cpp:127:55: error: use of 'w' before deduction of 'auto'
  127 |                 cur_dis[i] = min(cur_dis[i], tmp[i] + w);
      |                                                       ^