Submission #843427

#TimeUsernameProblemLanguageResultExecution timeMemory
843427socpite공장들 (JOI14_factories)C++14
Compilation error
0 ms0 KiB
#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<pair<int, long long>> vt; ll dis[mxN]; pii sparse[19][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, long long 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 dfs = [&](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; }; dfs(dfs, vtn[0], -1); for (auto v : vtn) { cur[v] = 0; vt[v].clear(); } vtn.clear(); return res; }

Compilation message (stderr)

factories.cpp: In function 'void dfs(int, int)':
factories.cpp:39:16: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17'
   39 |     for (auto &[u, w] : G[v])
      |                ^
factories.cpp: In lambda function:
factories.cpp:116:15: error: '__gnu_cxx::__alloc_traits<std::allocator<std::pair<int, long long int> >, std::pair<int, long long int> >::value_type' {aka 'struct std::pair<int, long long int>'} has no member named 'emplace_back'
  116 |         vt[u].emplace_back(v, w);
      |               ^~~~~~~~~~~~
factories.cpp:117:15: error: '__gnu_cxx::__alloc_traits<std::allocator<std::pair<int, long long int> >, std::pair<int, long long int> >::value_type' {aka 'struct std::pair<int, long long int>'} has no member named 'emplace_back'
  117 |         vt[v].emplace_back(u, w);
      |               ^~~~~~~~~~~~
factories.cpp: In lambda function:
factories.cpp:141:20: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17'
  141 |         for (auto &[u, w] : vt[v])
      |                    ^
factories.cpp:141:33: error: no matching function for call to 'begin(std::pair<int, long long int>&)'
  141 |         for (auto &[u, w] : vt[v])
      |                                 ^
In file included from /usr/include/c++/10/bits/range_access.h:36,
                 from /usr/include/c++/10/string:54,
                 from /usr/include/c++/10/bits/locale_classes.h:40,
                 from /usr/include/c++/10/bits/ios_base.h:41,
                 from /usr/include/c++/10/ios:42,
                 from /usr/include/c++/10/istream:38,
                 from /usr/include/c++/10/sstream:38,
                 from /usr/include/c++/10/complex:45,
                 from /usr/include/c++/10/ccomplex:39,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:54,
                 from factories.cpp:2:
/usr/include/c++/10/initializer_list:90:5: note: candidate: 'template<class _Tp> constexpr const _Tp* std::begin(std::initializer_list<_Tp>)'
   90 |     begin(initializer_list<_Tp> __ils) noexcept
      |     ^~~~~
/usr/include/c++/10/initializer_list:90:5: note:   template argument deduction/substitution failed:
factories.cpp:141:33: note:   'std::pair<int, long long int>' is not derived from 'std::initializer_list<_Tp>'
  141 |         for (auto &[u, w] : vt[v])
      |                                 ^
In file included from /usr/include/c++/10/string:54,
                 from /usr/include/c++/10/bits/locale_classes.h:40,
                 from /usr/include/c++/10/bits/ios_base.h:41,
                 from /usr/include/c++/10/ios:42,
                 from /usr/include/c++/10/istream:38,
                 from /usr/include/c++/10/sstream:38,
                 from /usr/include/c++/10/complex:45,
                 from /usr/include/c++/10/ccomplex:39,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:54,
                 from factories.cpp:2:
/usr/include/c++/10/bits/range_access.h:51:5: note: candidate: 'template<class _Container> decltype (__cont.begin()) std::begin(_Container&)'
   51 |     begin(_Container& __cont) -> decltype(__cont.begin())
      |     ^~~~~
/usr/include/c++/10/bits/range_access.h:51:5: note:   template argument deduction/substitution failed:
/usr/include/c++/10/bits/range_access.h: In substitution of 'template<class _Container> decltype (__cont.begin()) std::begin(_Container&) [with _Container = std::pair<int, long long int>]':
factories.cpp:141:33:   required from here
/usr/include/c++/10/bits/range_access.h:51:50: error: 'struct std::pair<int, long long int>' has no member named 'begin'
   51 |     begin(_Container& __cont) -> decltype(__cont.begin())
      |                                           ~~~~~~~^~~~~
/usr/include/c++/10/bits/range_access.h:61:5: note: candidate: 'template<class _Container> decltype (__cont.begin()) std::begin(const _Container&)'
   61 |     begin(const _Container& __cont) -> decltype(__cont.begin())
      |     ^~~~~
/usr/include/c++/10/bits/range_access.h:61:5: note:   template argument deduction/substitution failed:
/usr/include/c++/10/bits/range_access.h: In substitution of 'template<class _Container> decltype (__cont.begin()) std::begin(const _Container&) [with _Container = std::pair<int, long long int>]':
factories.cpp:141:33:   required from here
/usr/include/c++/10/bits/range_access.h:61:56: error: 'const struct std::pair<int, long long int>' has no member named 'begin'
   61 |     begin(const _Container& __cont) -> decltype(__cont.begin())
      |                                                 ~~~~~~~^~~~~
/usr/include/c++/10/bits/range_access.h:90:5: note: candidate: 'template<class _Tp, long unsigned int _Nm> constexpr _Tp* std::begin(_Tp (&)[_Nm])'
   90 |     begin(_Tp (&__arr)[_Nm])
      |     ^~~~~
/usr/include/c++/10/bits/range_access.h:90:5: note:   template argument deduction/substitution failed:
factories.cpp:141:33: note:   mismatched types '_Tp [_Nm]' and 'std::pair<int, long long int>'
  141 |         for (auto &[u, w] : vt[v])
      |                                 ^
In file included from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:95,
                 from factories.cpp:2:
/usr/include/c++/10/valarray:1214:5: note: candidate: 'template<class _Tp> _Tp* std::begin(std::valarray<_Tp>&)'
 1214 |     begin(valarray<_Tp>& __va)
      |     ^~~~~
/usr/include/c++/10/valarray:1214:5: note:   template argument deduction/substitution failed:
factories.cpp:141:33: note:   'std::pair<int, long long int>' is not derived from 'std::valarray<_Tp>'
  141 |         for (auto &[u, w] : vt[v])
      |                                 ^
In file included from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:95,
                 from factories.cpp:2:
/usr/include/c++/10/valarray:1224:5: note: candidate: 'template<class _Tp> const _Tp* std::begin(const std::valarray<_Tp>&)'
 1224 |     begin(const valarray<_Tp>& __va)
      |     ^~~~~
/usr/include/c++/10/valarray:1224:5: note:   template argument deduction/substitution failed:
factories.cpp:141:33: note:   'std::pair<int, long long int>' is not derived from 'const std::valarray<_Tp>'
  141 |         for (auto &[u, w] : vt[v])
      |                                 ^
factories.cpp:141:33: error: no matching function for call to 'end(std::pair<int, long long int>&)'
In file included from /usr/include/c++/10/bits/range_access.h:36,
                 from /usr/include/c++/10/string:54,
                 from /usr/include/c++/10/bits/locale_classes.h:40,
                 from /usr/include/c++/10/bits/ios_base.h:41,
                 from /usr/include/c++/10/ios:42,
                 from /usr/include/c++/10/istream:38,
                 from /usr/include/c++/10/sstream:38,
                 from /usr/include/c++/10/complex:45,
                 from /usr/include/c++/10/ccomplex:39,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:54,
                 from factories.cpp:2:
/usr/include/c++/10/initializer_list:101:5: note: candidate: 'template<class _Tp> constexpr const _Tp* std::end(std::initializer_list<_Tp>)'
  101 |     end(initializer_list<_Tp> __ils) noexcept
      |     ^~~
/usr/include/c++/10/initializer_list:101:5: note:   template argument deduction/substitution failed:
factories.cpp:141:33: note:   'std::pair<int, long long int>' is not derived from 'std::initializer_list<_Tp>'
  141 |         for (auto &[u, w] : vt[v])
      |                                 ^
In file included from /usr/include/c++/10/string:54,
                 from /usr/include/c++/10/bits/locale_classes.h:40,
                 from /usr/include/c++/10/bits/ios_base.h:41,
                 from /usr/include/c++/10/ios:42,
                 from /usr/include/c++/10/istream:38,
                 from /usr/include/c++/10/sstream:38,
                 from /usr/include/c++/10/complex:45,
                 from /usr/include/c++/10/ccomplex:39,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:54,
                 from factories.cpp:2:
/usr/include/c++/10/bits/range_access.h:71:5: note: candidate: 'template<class _Container> decltype (__cont.end()) std::end(_Container&)'
   71 |     end(_Container& __cont) -> decltype(__cont.end())
      |     ^~~
/usr/include/c++/10/bits/range_access.h:71:5: note:   template argument deduction/substitution failed:
/usr/include/c++/10/bits/range_access.h: In substitution of 'template<class _Container> decltype (__cont.end()) std::end(_Container&) [with _Container = std::pair<int, long long int>]':
factories.cpp:141:33:   required from here
/usr/include/c++/10/bits/range_access.h:71:48: error: 'struct std::pair<int, long long int>' has no member named 'end'
   71 |     end(_Container& __cont) -> decltype(__cont.end())
      |                                         ~~~~~~~^~~
/usr/include/c++/10/bits/range_access.h:81:5: note: candidate: 'template<class _Container> decltype (__cont.end()) std::end(const _Container&)'
   81 |     end(const _Container& __cont) -> decltype(__cont.end())
      |     ^~~
/usr/include/c++/10/bits/range_access.h:81:5: note:   template argument deduction/substitution failed:
/usr/include/c++/10/bits/range_access.h: In substitution of 'template<class _Container> decltype (__cont.end()) std::end(const _Container&) [with _Container = std::pair<int, long long int>]':
factories.cpp:141:33:   required from here
/usr/include/c++/10/bits/range_access.h:81:54: error: 'const struct std::pair<int, long long int>' has no member named 'end'
   81 |     end(const _Container& __cont) -> decltype(__cont.end())
      |                                               ~~~~~~~^~~
/usr/include/c++/10/bits/range_access.h:100:5: note: candidate: 'template<class _Tp, long unsigned int _Nm> constexpr _Tp* std::end(_Tp (&)[_Nm])'
  100 |     end(_Tp (&__arr)[_Nm])
      |     ^~~
/usr/include/c++/10/bits/range_access.h:100:5: note:   template argument deduction/substitution failed:
factories.cpp:141:33: note:   mismatched types '_Tp [_Nm]' and 'std::pair<int, long long int>'
  141 |         for (auto &[u, w] : vt[v])
      |                                 ^
In file included from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:95,
                 from factories.cpp:2:
/usr/include/c++/10/valarray:1234:5: note: candidate: 'template<class _Tp> _Tp* std::end(std::valarray<_Tp>&)'
 1234 |     end(valarray<_Tp>& __va)
      |     ^~~
/usr/include/c++/10/valarray:1234:5: note:   template argument deduction/substitution failed:
factories.cpp:141:33: note:   'std::pair<int, long long int>' is not derived from 'std::valarray<_Tp>'
  141 |         for (auto &[u, w] : vt[v])
      |                                 ^
In file included from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:95,
                 from factories.cpp:2:
/usr/include/c++/10/valarray:1244:5: note: candidate: 'template<class _Tp> const _Tp* std::end(const std::valarray<_Tp>&)'
 1244 |     end(const valarray<_Tp>& __va)
      |     ^~~
/usr/include/c++/10/valarray:1244:5: note:   template argument deduction/substitution failed:
factories.cpp:141:33: note:   'std::pair<int, long long int>' is not derived from 'const std::valarray<_Tp>'
  141 |         for (auto &[u, w] : vt[v])
      |                                 ^
factories.cpp: In function 'long long int Query(int, int*, int, int*)':
factories.cpp:158:15: error: '__gnu_cxx::__alloc_traits<std::allocator<std::pair<int, long long int> >, std::pair<int, long long int> >::value_type' {aka 'struct std::pair<int, long long int>'} has no member named 'clear'
  158 |         vt[v].clear();
      |               ^~~~~
factories.cpp: In instantiation of 'Query(int, int*, int, int*)::<lambda(auto:1, int, int)> [with auto:1 = Query(int, int*, int, int*)::<lambda(auto:1, int, int)>]':
factories.cpp:153:24:   required from here
factories.cpp:143:17: error: use of 'u' before deduction of 'auto'
  143 |             if (u == p)
      |                 ^
factories.cpp:147:55: error: use of 'w' before deduction of 'auto'
  147 |                 cur_dis[i] = min(cur_dis[i], tmp[i] + w);
      |                                                       ^