Submission #917401

#TimeUsernameProblemLanguageResultExecution timeMemory
917401devkudawlaUnija (COCI17_unija)C++17
Compilation error
0 ms0 KiB
// AUTHOR->DEV KUDAWLA //---------------------------------------------------- #include <bits/stdc++.h> #include <ext/pb_ds/assoc_container.hpp> #include <ext/pb_ds/tree_policy.hpp> using namespace std; using namespace __gnu_pbds; typedef tree<long long, null_type, less<long long>, rb_tree_tag, tree_order_statistics_node_update> ordered_set; // find_by_order(it return an iterator input is a value), order_of_key(input is index) typedef tree<long long, null_type, less_equal<int>, rb_tree_tag, tree_order_statistics_node_update> ordered_multiset; #pragma GCC optimize("Ofast") #pragma GCC optimize("unroll-loops") #define ll long long int #define vl vector<long long> #define nline cout << "\n" #define n_digit(n) (int)log10(n) + 1 #define msb(n) (int)(log2(n)) + 1 // it is 1 based #define pll pair<ll, ll> #define all(x) x.begin(), x.end() #define ternary(a, b, c) ((a) ? (b) : (c)) #define yesno(a) a ? cout << "YES" : cout << "NO" #define sroot(a) sqrt((long double)a) #define Max(a, b) max((ll)a, (ll)b) #define Min(a, b) min((ll)a, (ll)b) //---------------------------------------------------- template <class T1, class T2> ostream &operator<<(std::ostream &os, pair<T1, T2> &st) { cout << "{ " << st.first << " " << st.second << " }"; return os; } template <class T> istream &operator>>(istream &is, vector<T> &v) { int n = v.size(); for (int i = 0; i < n; i++) is >> v[i]; return is; } template <class T> istream &operator>>(istream &is, vector<vector<T>> &v) { int n = v.size(); int m = v[0].size(); for (int i = 0; i < n; i++) for (int j = 0; j < m; j++) is >> v[i][j]; return is; } template <class T> ostream &operator<<(std::ostream &os, vector<T> &v) { int n = v.size(); for (int i = 0; i < n; i++) os << v[i] << ((i == n - 1) ? "\n" : " "); return os; } template <class T> ostream &operator<<(std::ostream &os, vector<vector<T>> &v) { int n = v.size(); int m = v[0].size(); for (int i = 0; i < n; i++) { for (int j = 0; j < m; j++) os << v[i][j] << " "; os << "\n"; } return os; } template <class T> ostream &operator<<(std::ostream &os, set<T> &st) { cout << "---------------------------------\n"; for (auto i : st) cout << i << " "; nline; cout << "---------------------------------\n"; return os; } template <class T> ostream &operator<<(std::ostream &os, multiset<T> &st) { cout << "---------------------------------\n"; for (auto i : st) cout << i << " "; nline; cout << "---------------------------------\n"; return os; } template <class T1, class T2> ostream &operator<<(std::ostream &os, map<T1, T2> &st) { cout << "-------------------------------\n"; auto x = st.begin(); while (x != st.end()) { cout << x->first; cout << " -> "; cout << x->second; nline; x++; } cout << "-------------------------------\n"; return os; } template <class T> vector<T> add(vector<T> v1, vector<T> v2) { vector<T> v3 = v1; for (ll i = 0; i < v2.size(); i++) v3.push_back(v2[i]); return v3; } template <int D, typename T> struct Vector : public vector<Vector<D - 1, T>> { static_assert(D >= 1, "Vector dimension must be greater than zero!"); template <typename U, typename... Args> Vector(U n = U(), Args... args) : vector<Vector<D - 1, T>>(n, Vector<D - 1, T>(args...)) {} }; template <typename T> struct Vector<1, T> : public vector<T> { template <typename... Args> Vector(Args... args) : vector<T>(args...) {} }; inline ll power2(ll n) { ll answer = 0; if (n != 0) answer = msb(((ll)n) ^ ((ll)(n - 1))) - 1; return answer; } inline ll indexOf(ordered_multiset &st, ll value) { return st.order_of_key(value); } inline ll valueAt(ordered_multiset &st, ll index) { return *st.find_by_order(index); } inline ll indexOf(ordered_set &st, ll value) { return st.order_of_key(value); } inline ll valueAt(ordered_set &st, ll index) { return *st.find_by_order(index); } template <class T> void Distinct(T &v, bool sorting = true) { if (sorting) sort(begin(v), end(v)); v.resize(unique(begin(v), end(v)) - begin(v)); } //---------------------------------------------------- const ll N1 = 1000000007; const ll N2 = 998244353; //---------------------------------------------------- // MODULAR ARITHMETIC inline ll expo(ll a, ll b, ll mod = LONG_LONG_MAX) { ll res = 1; while (b > 0) { if (b & 1) res = ((__int128_t)res * a) % mod; a = ((__int128_t)a * a) % mod; b = b >> 1; } return res; } inline ll mminvprime(ll a, ll b) { return expo(a, b - 2, b); } // FOR PRIME inline ll mod_add(ll a, ll b, ll m = N1) { a = a % m; b = b % m; return (((a + b) % m) + m) % m; } inline ll mod_mul(ll a, ll b, ll m = N1) { a = a % m; b = b % m; return (((__int128_t)(a * b) % m) + m) % m; } inline ll mod_sub(ll a, ll b, ll m = N1) { a = a % m; b = b % m; return (((a - b) % m) + m) % m; } inline ll mod_div(ll a, ll b, ll m = N1) { a = a % m; b = b % m; return (mod_mul(a, mminvprime(b, m), m) + m) % m; } // only for prime m ll ncr(ll n, ll r, bool mod_version = false, ll mod = N1) { ll answer = 0; if (n >= r) { r = Min(r, n - r); if (mod_version == true) { ll a = 1; for (ll i = n; i >= n - r + 1; i--) a = mod_mul(a, i, mod); ll b = 1; for (ll i = 1; i <= r; i++) b = mod_mul(b, i, mod); b = mminvprime(b, mod); a = mod_mul(a, b, mod); answer = a; } else { ll a = 1; ll b = 1; for (ll i = n; i >= n - r + 1; i--) { a *= i; b *= (n - i + 1); ll g = __gcd(a, b); a /= g, b /= g; } answer = a / b; } } return answer; } ll factorial(ll n, bool mod_version = false, ll mod = N1) { ll answer = 1; if (mod_version == true) { for (int i = 2; i <= n; i++) answer = mod_mul(answer, i, mod); } else { for (int i = 2; i <= n; i++) answer *= i; } return answer; } bool is_prime(ll a) { if (a == 1) return false; for (ll i = 2; i * i <= a; i++) { if (a % i == 0) return false; } return true; } //---------------------------------------------------- map<ll, ll> prime_factors(ll n, bool debug = false) { map<ll, ll> answer; ll a = n; for (ll i = 2; i * i <= a; i++) while (a % i == 0) answer[i]++, a /= i; if (a > 1) answer[a]++; if (debug) { for (auto i : answer) cout << i.first << " -> " << i.second << "\n"; } return answer; } //---------------------------------------------------- const int n_sieve = (20000008); // O(Nlog(log(N))) // vector<bool> prime_sieve(n_sieve + 1, true); void initialise_sieve(vector<bool> &prime_sieve) { prime_sieve[0] = false; prime_sieve[1] = false; for (ll i = 2; i * i < n_sieve; i++) if (prime_sieve[i] == true) for (ll j = 2; j * i < n_sieve; j++) prime_sieve[j * i] = false; } //---------------------------------------------------- // #define LOCAL_COMPILER #ifdef LOCAL_COMPILER #define dbg(x) \ cerr << "\n" \ << #x << " -> \n"; \ cout << x << "\n"; #endif #ifndef LOCAL_COMPILER #define dbg(x) #endif //---------------------------------------------------- // CODE STARTS HERE //---------------------------------------------------- void solve(bool testCases = true) { ll T = 1; //->TEST CASES if (testCases) cin >> T; while (T--) { ll n; cin >> n; unordered_map<ll, ll, greater<ll>> mp; for (ll i = 0; i < n; i++) { ll a, b; cin >> a >> b; a /= 2, b /= 2; mp[b] = Max(mp[b], a); } vl a, b; for (auto i : mp) { a.push_back(i.first), b.push_back(i.second); } a.push_back(0); b.push_back(b.back()); ll ans = 0; ll mx = 0; for (ll i = 1; i < a.size(); i++) { mx = Max(mx, b[i - 1]); ll l = a[i - 1], r = a[i] + 1; ans += (l - r + 1) * mx; } cout << 4 * ans; nline; } //-------------------------------------------- // CODE ENDS HERE } //---------------------------------------------------- int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); //------------------------------------------------ // initialise_sieve(prime_sieve); //------------------------------------------------ #ifdef LOCAL_COMPILER std::cout << std::fixed << std::setprecision(25); std::cerr << std::fixed << std::setprecision(10); auto start = std::chrono::high_resolution_clock::now(); #endif solve(false); #ifdef LOCAL_COMPILER auto stop = std::chrono::high_resolution_clock::now(); long double duration = std::chrono::duration_cast<std::chrono::nanoseconds>(stop - start).count(); std::cerr << "Time taken : " << duration / 1e9 << "s" << std::endl; #endif //------------------------------------------------ return 0; } //----------------------------------------------------

Compilation message (stderr)

unija.cpp: In function 'void solve(bool)':
unija.cpp:329:26: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
  329 |         for (ll i = 1; i < a.size(); i++)
      |                        ~~^~~~~~~~~~
In file included from /usr/include/c++/10/bits/hashtable.h:35,
                 from /usr/include/c++/10/unordered_map:46,
                 from /usr/include/c++/10/functional:61,
                 from /usr/include/c++/10/pstl/glue_algorithm_defs.h:13,
                 from /usr/include/c++/10/algorithm:74,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:65,
                 from unija.cpp:3:
/usr/include/c++/10/bits/hashtable_policy.h: In instantiation of 'std::__detail::_Hash_code_base<_Key, _Value, _ExtractKey, _H1, _H2, std::__detail::_Default_ranged_hash, true>::__hash_code std::__detail::_Hash_code_base<_Key, _Value, _ExtractKey, _H1, _H2, std::__detail::_Default_ranged_hash, true>::_M_hash_code(const _Key&) const [with _Key = long long int; _Value = std::pair<const long long int, long long int>; _ExtractKey = std::__detail::_Select1st; _H1 = std::greater<long long int>; _H2 = std::__detail::_Mod_range_hashing; std::__detail::_Hash_code_base<_Key, _Value, _ExtractKey, _H1, _H2, std::__detail::_Default_ranged_hash, true>::__hash_code = long unsigned int]':
/usr/include/c++/10/bits/hashtable_policy.h:707:45:   required from 'std::__detail::_Map_base<_Key, _Pair, _Alloc, std::__detail::_Select1st, _Equal, _H1, _H2, _Hash, _RehashPolicy, _Traits, true>::mapped_type& std::__detail::_Map_base<_Key, _Pair, _Alloc, std::__detail::_Select1st, _Equal, _H1, _H2, _Hash, _RehashPolicy, _Traits, true>::operator[](const key_type&) [with _Key = long long int; _Pair = std::pair<const long long int, long long int>; _Alloc = std::allocator<std::pair<const long long int, long long int> >; _Equal = std::equal_to<long long int>; _H1 = std::greater<long long int>; _H2 = std::__detail::_Mod_range_hashing; _Hash = std::__detail::_Default_ranged_hash; _RehashPolicy = std::__detail::_Prime_rehash_policy; _Traits = std::__detail::_Hashtable_traits<true, false, true>; std::__detail::_Map_base<_Key, _Pair, _Alloc, std::__detail::_Select1st, _Equal, _H1, _H2, _Hash, _RehashPolicy, _Traits, true>::mapped_type = long long int; std::__detail::_Map_base<_Key, _Pair, _Alloc, std::__detail::_Select1st, _Equal, _H1, _H2, _Hash, _RehashPolicy, _Traits, true>::key_type = long long int]'
/usr/include/c++/10/bits/unordered_map.h:984:20:   required from 'std::unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::mapped_type& std::unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::operator[](const key_type&) [with _Key = long long int; _Tp = long long int; _Hash = std::greater<long long int>; _Pred = std::equal_to<long long int>; _Alloc = std::allocator<std::pair<const long long int, long long int> >; std::unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::mapped_type = long long int; std::unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::key_type = long long int]'
unija.cpp:318:17:   required from here
/usr/include/c++/10/bits/hashtable_policy.h:1377:16: error: static assertion failed: hash function must be invocable with an argument of key type
 1377 |  static_assert(__is_invocable<const _H1&, const _Key&>{},
      |                ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/usr/include/c++/10/bits/hashtable_policy.h:1379:16: error: no match for call to '(const std::greater<long long int>) (const long long int&)'
 1379 |  return _M_h1()(__k);
      |         ~~~~~~~^~~~~
In file included from /usr/include/c++/10/string:48,
                 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 unija.cpp:3:
/usr/include/c++/10/bits/stl_function.h:375:7: note: candidate: 'constexpr bool std::greater<_Tp>::operator()(const _Tp&, const _Tp&) const [with _Tp = long long int]'
  375 |       operator()(const _Tp& __x, const _Tp& __y) const
      |       ^~~~~~~~
/usr/include/c++/10/bits/stl_function.h:375:7: note:   candidate expects 2 arguments, 1 provided