Submission #1011369

#TimeUsernameProblemLanguageResultExecution timeMemory
1011369Double_SlashLanguages (IOI10_languages)C++17
Compilation error
0 ms0 KiB
#include "lang.h" #include "grader.h" #include <bits/extc++.h> using namespace std; using namespace __gnu_pbds; #define debug(x) [&] { auto _x = x; cerr << __LINE__ << ": " << #x << " = " << _x << endl; return _x; }() using ll = long long; using pint = pair<int, int>; struct phash { ll operator()(const pint &x) const { return x.first << 16 | x.second; } }; double magic(double x) { return pow(abs(x), 1.2); } template <typename T, class Hash> struct Data : gp_hash_table<T, int, Hash> { int tot = 0; double operator&(Data<T, Hash> &o) const { double ret = 0; for (auto [k, v]: *this) { ret += magic((double) v / tot - (o.contains(k) ? (double) o.at(k) / o.tot : 0)); } for (auto [k, v]: o) { if (not this->contains(k)) ret += magic((double) v / o.tot); } return ret; } void operator+=(Data<T, Hash> &o) { for (auto &[k, v]: o) { (*this)[k] += v; } tot += o.tot; }}; struct Profile { Data<int, hash<int>> sing; Data<pint, phash> doub; Profile() {} Profile(int *arr) { for (int i = 0; i < 100; ++i) { sing[arr[i]]++; if (i) doub[{arr[i - 1], arr[i]}]++; } sing.tot = 100; doub.tot = 99; } double operator&(const Profile &o) const { return (sing & o.sing) + (doub & o.doub); } void operator+=(const Profile &o) { sing += o.sing; doub += o.doub; } } profile[56]; void excerpt(int *E) { Profile p(E); pair<double, int> mn{1e18, 0}; for (int i = 0; i < 56; ++i) { mn = min(mn, {p & profile[i], i}); } int ans = language(mn.second); profile[ans] += p; }

Compilation message (stderr)

lang.cpp: In member function 'double Profile::operator&(const Profile&) const':
lang.cpp:57:16: error: no match for 'operator&' (operand types are 'const Data<int, std::hash<int> >' and 'const Data<int, std::hash<int> >')
   57 |   return (sing & o.sing) + (doub & o.doub);
      |           ~~~~ ^ ~~~~~~
      |           |        |
      |           |        Data<[...],[...]>
      |           Data<[...],[...]>
lang.cpp:23:9: note: candidate: 'double Data<T, Hash>::operator&(Data<T, Hash>&) const [with T = int; Hash = std::hash<int>]' (near match)
   23 |  double operator&(Data<T, Hash> &o) const {
      |         ^~~~~~~~
lang.cpp:23:9: note:   conversion of argument 1 would be ill-formed:
lang.cpp:57:20: error: binding reference of type 'Data<int, std::hash<int> >&' to 'const Data<int, std::hash<int> >' discards qualifiers
   57 |   return (sing & o.sing) + (doub & o.doub);
      |                  ~~^~~~
In file included from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:45,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/extc++.h:32,
                 from lang.cpp:3:
/usr/include/c++/10/cstddef:138:3: note: candidate: 'constexpr std::byte std::operator&(std::byte, std::byte)'
  138 |   operator&(byte __l, byte __r) noexcept
      |   ^~~~~~~~
/usr/include/c++/10/cstddef:138:18: note:   no known conversion for argument 1 from 'const Data<int, std::hash<int> >' to 'std::byte'
  138 |   operator&(byte __l, byte __r) noexcept
      |             ~~~~~^~~
In file included 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 /usr/include/x86_64-linux-gnu/c++/10/bits/extc++.h:32,
                 from lang.cpp:3:
/usr/include/c++/10/bits/ios_base.h:83:3: note: candidate: 'constexpr std::_Ios_Fmtflags std::operator&(std::_Ios_Fmtflags, std::_Ios_Fmtflags)'
   83 |   operator&(_Ios_Fmtflags __a, _Ios_Fmtflags __b)
      |   ^~~~~~~~
/usr/include/c++/10/bits/ios_base.h:83:27: note:   no known conversion for argument 1 from 'const Data<int, std::hash<int> >' to 'std::_Ios_Fmtflags'
   83 |   operator&(_Ios_Fmtflags __a, _Ios_Fmtflags __b)
      |             ~~~~~~~~~~~~~~^~~
/usr/include/c++/10/bits/ios_base.h:125:3: note: candidate: 'constexpr std::_Ios_Openmode std::operator&(std::_Ios_Openmode, std::_Ios_Openmode)'
  125 |   operator&(_Ios_Openmode __a, _Ios_Openmode __b)
      |   ^~~~~~~~
/usr/include/c++/10/bits/ios_base.h:125:27: note:   no known conversion for argument 1 from 'const Data<int, std::hash<int> >' to 'std::_Ios_Openmode'
  125 |   operator&(_Ios_Openmode __a, _Ios_Openmode __b)
      |             ~~~~~~~~~~~~~~^~~
/usr/include/c++/10/bits/ios_base.h:165:3: note: candidate: 'constexpr std::_Ios_Iostate std::operator&(std::_Ios_Iostate, std::_Ios_Iostate)'
  165 |   operator&(_Ios_Iostate __a, _Ios_Iostate __b)
      |   ^~~~~~~~
/usr/include/c++/10/bits/ios_base.h:165:26: note:   no known conversion for argument 1 from 'const Data<int, std::hash<int> >' to 'std::_Ios_Iostate'
  165 |   operator&(_Ios_Iostate __a, _Ios_Iostate __b)
      |             ~~~~~~~~~~~~~^~~
In file included from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:66,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/extc++.h:32,
                 from lang.cpp:3:
/usr/include/c++/10/bitset:1435:5: note: candidate: 'template<long unsigned int _Nb> std::bitset<_Nb> std::operator&(const std::bitset<_Nb>&, const std::bitset<_Nb>&)'
 1435 |     operator&(const bitset<_Nb>& __x, const bitset<_Nb>& __y) _GLIBCXX_NOEXCEPT
      |     ^~~~~~~~
/usr/include/c++/10/bitset:1435:5: note:   template argument deduction/substitution failed:
lang.cpp:57:20: note:   'const Data<int, std::hash<int> >' is not derived from 'const std::bitset<_Nb>'
   57 |   return (sing & o.sing) + (doub & o.doub);
      |                    ^~~~
In file included from /usr/include/c++/10/bits/shared_ptr_atomic.h:33,
                 from /usr/include/c++/10/memory:85,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:82,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/extc++.h:32,
                 from lang.cpp:3:
/usr/include/c++/10/bits/atomic_base.h:100:3: note: candidate: 'constexpr std::memory_order std::operator&(std::memory_order, std::__memory_order_modifier)'
  100 |   operator&(memory_order __m, __memory_order_modifier __mod)
      |   ^~~~~~~~
/usr/include/c++/10/bits/atomic_base.h:100:26: note:   no known conversion for argument 1 from 'const Data<int, std::hash<int> >' to 'std::memory_order'
  100 |   operator&(memory_order __m, __memory_order_modifier __mod)
      |             ~~~~~~~~~~~~~^~~
In file included from /usr/include/c++/10/valarray:603,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:95,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/extc++.h:32,
                 from lang.cpp:3:
/usr/include/c++/10/bits/valarray_after.h:411:5: note: candidate: 'template<class _Dom1, class _Dom2> std::_Expr<std::__detail::_BinClos<std::__bitwise_and, std::_Expr, std::_Expr, _Dom1, _Dom2>, typename std::__fun<std::__bitwise_and, typename _Dom1::value_type>::result_type> std::operator&(const std::_Expr<_Dom1, typename _Dom1::value_type>&, const std::_Expr<_Dom2, typename _Dom2::value_type>&)'
  411 |     _DEFINE_EXPR_BINARY_OPERATOR(&, __bitwise_and)
      |     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/usr/include/c++/10/bits/valarray_after.h:411:5: note:   template argument deduction/substitution failed:
lang.cpp:57:20: note:   'const Data<int, std::hash<int> >' is not derived from 'const std::_Expr<_Dom1, typename _Dom1::value_type>'
   57 |   return (sing & o.sing) + (doub & o.doub);
      |                    ^~~~
In file included from /usr/include/c++/10/valarray:603,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:95,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/extc++.h:32,
                 from lang.cpp:3:
/usr/include/c++/10/bits/valarray_after.h:411:5: note: candidate: 'template<class _Dom> std::_Expr<std::__detail::_BinClos<std::__bitwise_and, std::_Expr, std::_Constant, _Dom, typename _Dom::value_type>, typename std::__fun<std::__bitwise_and, typename _Dom1::value_type>::result_type> std::operator&(const std::_Expr<_Dom1, typename _Dom1::value_type>&, const typename _Dom::value_type&)'
  411 |     _DEFINE_EXPR_BINARY_OPERATOR(&, __bitwise_and)
      |     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/usr/include/c++/10/bits/valarray_after.h:411:5: note:   template argument deduction/substitution failed:
lang.cpp:57:20: note:   'const Data<int, std::hash<int> >' is not derived from 'const std::_Expr<_Dom1, typename _Dom1::value_type>'
   57 |   return (sing & o.sing) + (doub & o.doub);
      |                    ^~~~
In file included from /usr/include/c++/10/valarray:603,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:95,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/extc++.h:32,
                 from lang.cpp:3:
/usr/include/c++/10/bits/valarray_after.h:411:5: note: candidate: 'template<class _Dom> std::_Expr<std::__detail::_BinClos<std::__bitwise_and, std::_Constant, std::_Expr, typename _Dom::value_type, _Dom>, typename std::__fun<std::__bitwise_and, typename _Dom1::value_type>::result_type> std::operator&(const typename _Dom::value_type&, const std::_Expr<_Dom1, typename _Dom1::value_type>&)'
  411 |     _DEFINE_EXPR_BINARY_OPERATOR(&, __bitwise_and)
      |     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/usr/include/c++/10/bits/valarray_after.h:411:5: note:   template argument deduction/substitution failed:
lang.cpp:57:20: note:   'const Data<int, std::hash<int> >' is not derived from 'const std::_Expr<_Dom1, typename _Dom1::value_type>'
   57 |   return (sing & o.sing) + (doub & o.doub);
      |                    ^~~~
In file included from /usr/include/c++/10/valarray:603,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:95,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/extc++.h:32,
                 from lang.cpp:3:
/usr/include/c++/10/bits/valarray_after.h:411:5: note: candidate: 'template<class _Dom> std::_Expr<std::__detail::_BinClos<std::__bitwise_and, std::_Expr, std::_ValArray, _Dom, typename _Dom::value_type>, typename std::__fun<std::__bitwise_and, typename _Dom1::value_type>::result_type> std::operator&(const std::_Expr<_Dom1, typename _Dom1::value_type>&, const std::valarray<typename _Dom::value_type>&)'
  411 |     _DEFINE_EXPR_BINARY_OPERATOR(&, __bitwise_and)
      |     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/usr/include/c++/10/bits/valarray_after.h:411:5: note:   template argument deduction/substitution failed:
lang.cpp:57:20: note:   'const Data<int, std::hash<int> >' is not derived from 'const std::_Expr<_Dom1, typename _Dom1::value_type>'
   57 |   return (sing & o.sing) + (doub & o.doub);
      |                    ^~~~
In file included from /usr/include/c++/10/valarray:603,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:95,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/extc++.h:32,
                 from lang.cpp:3:
/usr/include/c++/10/bits/valarray_after.h:411:5: note: candidate: 'template<class _Dom> std::_Expr<std::__detail::_BinClos<std::__bitwise_and, std::_ValArray, std::_Expr, typename _Dom::value_type, _Dom>, typename std::__fun<std::__bitwise_and, typename _Dom1::value_type>::result_type> std::operator&(const std::valarray<typename _Dom::value_type>&, const std::_Expr<_Dom1, typename _Dom1::value_type>&)'
  411 |     _DEFINE_EXPR_BINARY_OPERATOR(&, __bitwise_and)
      |     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/usr/include/c++/10/bits/valarray_after.h:411:5: note:   template argument deduction/substitution failed:
lang.cpp:57:20: note:   'const Data<int, std::hash<int> >' is not derived from 'const std::_Expr<_Dom1, typename _Dom1::value_type>'
   57 |   return (sing & o.sing) + (doub & o.doub);
      |                    ^~~~
In file included from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:95,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/extc++.h:32,
                 from lang.cpp:3:
/usr/include/c++/10/valarray:1191:1: note: candidate: 'template<class _Tp> std::_Expr<std::__detail::_BinClos<std::__bitwise_and, std::_ValArray, std::_ValArray, _Tp, _Tp>, typename std::__fun<std::__bitwise_and, _Tp>::result_type> std::operator&(const std::valarray<_Tp>&, const std::valarray<_Tp>&)'
 1191 | _DEFINE_BINARY_OPERATOR(&, __bitwise_and)
      | ^~~~~~~~~~~~~~~~~~~~~~~
/usr/include/c++/10/valarray:1191:1: note:   template argument deduction/substitution failed:
lang.cpp:57:20: note:   'const Data<int, std::hash<int> >' is not derived from 'const std::valarray<_Tp>'
   57 |   return (sing & o.sing) + (doub & o.doub);
      |                    ^~~~
In file included from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:95,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/extc++.h:32,
                 from lang.cpp:3:
/usr/include/c++/10/valarray:1191:1: note: candidate: 'template<class _Tp> std::_Expr<std::__detail::_BinClos<std::__bitwise_and, std::_ValArray, std::_Constant, _Tp, _Tp>, typename std::__fun<std::__bitwise_and, _Tp>::result_type> std::operator&(const std::valarray<_Tp>&, const typename std::valarray<_Tp>::value_type&)'
 1191 | _DEFINE_BINARY_OPERATOR(&, __bitwise_and)
      | ^~~~~~~~~~~~~~~~~~~~~~~
/usr/include/c++/10/valarray:1191:1: note:   template argument deduction/substitution failed:
lang.cpp:57:20: note:   'const Data<int, std::hash<int> >' is not derived from 'const std::valarray<_Tp>'
   57 |   return (sing & o.sing) + (doub & o.doub);
      |                    ^~~~
In file included from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:95,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/extc++.h:32,
                 from lang.cpp:3:
/usr/include/c++/10/valarray:1191:1: note: candidate: 'template<class _Tp> std::_Expr<std::__detail::_BinClos<std::__bitwise_and, std::_Constant, std::_ValArray, _Tp, _Tp>, typename std::__fun<std::__bitwise_and, _Tp>::result_type> std::operator&(const typename std::valarray<_Tp>::value_type&, const std::valarray<_Tp>&)'
 1191 | _DEFINE_BINARY_OPERATOR(&, __bitwise_and)
      | ^~~~~~~~~~~~~~~~~~~~~~~
/usr/include/c++/10/valarray:1191:1: note:   template argument deduction/substitution failed:
lang.cpp:57:20: note:   'const Data<int, std::hash<int> >' is not derived from 'const std::valarray<_Tp>'
   57 |   return (sing & o.sing) + (doub & o.doub);
      |                    ^~~~
In file included from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:105,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/extc++.h:32,
                 from lang.cpp:3:
/usr/include/c++/10/future:143:20: note: candidate: 'constexpr std::launch std::operator&(std::launch, std::launch)'
  143 |   constexpr launch operator&(launch __x, launch __y)
      |                    ^~~~~~~~
/usr/include/c++/10/future:143:37: note:   no known conversion for argument 1 from 'const Data<int, std::hash<int> >' to 'std::launch'
  143 |   constexpr launch operator&(launch __x, launch __y)
      |                              ~~~~~~~^~~
In file included from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:127,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/extc++.h:32,
                 from lang.cpp:3:
/usr/include/c++/10/charconv:668:3: note: candidate: 'constexpr std::chars_format std::operator&(std::chars_format, std::chars_format)'
  668 |   operator&(chars_format __lhs, chars_format __rhs) noexcept
      |   ^~~~~~~~
/usr/include/c++/10/charconv:668:26: note:   no known conversion for argument 1 from 'const Data<int, std::hash<int> >' to 'std::chars_format'
  668 |   operator&(chars_format __lhs, chars_format __rhs) noexcept
      |             ~~~~~~~~~~~~~^~~~~
lang.cpp:57:34: error: no match for 'operator&' (operand types are 'const Data<std::pair<int, int>, phash>' and 'const Data<std::pair<int, int>, phash>')
   57 |   return (sing & o.sing) + (doub & o.doub);
      |                             ~~~~ ^ ~~~~~~
      |                             |        |
      |                             |        Data<[...],[...]>
      |                             Data<[...],[...]>
lang.cpp:23:9: note: candidate: 'double Data<T, Hash>::operator&(Data<T, Hash>&) const [with T = std::pair<int, int>; Hash = phash]' (near match)
   23 |  double operator&(Data<T, Hash> &o) const {
      |         ^~~~~~~~
lang.cpp:23:9: note:   conversion of argument 1 would be ill-formed:
lang.cpp:57:38: error: binding reference of type 'Data<std::pair<int, int>, phash>&' to 'const Data<std::pair<int, int>, phash>' discards qualifiers
   57 |   return (sing & o.sing) + (doub & o.doub);
      |                                    ~~^~~~
In file included from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:45,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/extc++.h:32,
                 from lang.cpp:3:
/usr/include/c++/10/cstddef:138:3: note: candidate: 'constexpr std::byte std::operator&(std::byte, std::byte)'
  138 |   operator&(byte __l, byte __r) noexcept
      |   ^~~~~~~~
/usr/include/c++/10/cstddef:138:18: note:   no known conversion for argument 1 from 'const Data<std::pair<int, int>, phash>' to 'std::byte'
  138 |   operator&(byte __l, byte __r) noexcept
      |             ~~~~~^~~
In file included 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 /usr/include/x86_64-linux-gnu/c++/10/bits/extc++.h:32,
                 from lang.cpp:3:
/usr/include/c++/10/bits/ios_base.h:83:3: note: candidate: 'constexpr std::_Ios_Fmtflags std::operator&(std::_Ios_Fmtflags, std::_Ios_Fmtflags)'
   83 |   operator&(_Ios_Fmtflags __a, _Ios_Fmtflags __b)
      |   ^~~~~~~~
/usr/include/c++/10/bits/ios_base.h:83:27: note:   no known conversion for argument 1 from 'const Data<std::pair<int, int>, phash>' to 'std::_Ios_Fmtflags'
   83 |   operator&(_Ios_Fmtflags __a, _Ios_Fmtflags __b)
      |             ~~~~~~~~~~~~~~^~~
/usr/include/c++/10/bits/ios_base.h:125:3: note: candidate: 'constexpr std::_Ios_Openmode std::operator&(std::_Ios_Openmode, std::_Ios_Openmode)'
  125 |   operator&(_Ios_Openmode __a, _Ios_Openmode __b)
      |   ^~~~~~~~
/usr/include/c++/10/bits/ios_base.h:125:27: note:   no known conversion for argument 1 from 'const Data<std::pair<int, int>, phash>' to 'std::_Ios_Openmode'
  125 |   operator&(_Ios_Openmode __a, _Ios_Openmode __b)
      |             ~~~~~~~~~~~~~~^~~
/usr/include/c++/10/bits/ios_base.h:165:3: note: candidate: 'constexpr std::_Ios_Iostate std::operator&(std::_Ios_Iostate, std::_Ios_Iostate)'
  165 |   operator&(_Ios_Iostate __a, _Ios_Iostate __b)
      |   ^~~~~~~~
/usr/include/c++/10/bits/ios_base.h:165:26: note:   no known conversion for argument 1 from 'const Data<std::pair<int, int>, phash>' to 'std::_Ios_Iostate'
  165 |   operator&(_Ios_Iostate __a, _Ios_Iostate __b)
      |             ~~~~~~~~~~~~~^~~
In file included from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:66,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/extc++.h:32,
                 from lang.cpp:3:
/usr/include/c++/10/bitset:1435:5: note: candidate: 'template<long unsigned int _Nb> std::bitset<_Nb> std::operator&(const std::bitset<_Nb>&, const std::bitset<_Nb>&)'
 1435 |     operator&(const bitset<_Nb>& __x, const bitset<_Nb>& __y) _GLIBCXX_NOEXCEPT
      |     ^~~~~~~~
/usr/include/c++/10/bitset:1435:5: note:   template argument deduction/substitution failed:
lang.cpp:57:38: note:   'const Data<std::pair<int, int>, phash>' is not derived from 'const std::bitset<_Nb>'
   57 |   return (sing & o.sing) + (doub & o.doub);
      |                                      ^~~~
In file included from /usr/include/c++/10/bits/shared_ptr_atomic.h:33,
                 from /usr/include/c++/10/memory:85,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:82,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/extc++.h:32,
                 from lang.cpp:3:
/usr/include/c++/10/bits/atomic_base.h:100:3: note: candidate: 'constexpr std::memory_order std::operator&(std::memory_order, std::__memory_order_modifier)'
  100 |   operator&(memory_