結果
問題 | No.1300 Sum of Inversions |
ユーザー | Imperi_Night |
提出日時 | 2020-11-27 21:52:10 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 1,255 ms / 2,000 ms |
コード長 | 8,374 bytes |
コンパイル時間 | 1,549 ms |
コンパイル使用メモリ | 146,592 KB |
実行使用メモリ | 258,816 KB |
最終ジャッジ日時 | 2024-07-26 12:22:00 |
合計ジャッジ時間 | 29,068 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 888 ms
208,384 KB |
testcase_04 | AC | 861 ms
203,264 KB |
testcase_05 | AC | 736 ms
172,416 KB |
testcase_06 | AC | 1,002 ms
230,144 KB |
testcase_07 | AC | 959 ms
221,568 KB |
testcase_08 | AC | 1,070 ms
241,408 KB |
testcase_09 | AC | 1,057 ms
240,256 KB |
testcase_10 | AC | 601 ms
146,432 KB |
testcase_11 | AC | 596 ms
147,968 KB |
testcase_12 | AC | 859 ms
204,416 KB |
testcase_13 | AC | 861 ms
199,936 KB |
testcase_14 | AC | 1,255 ms
258,816 KB |
testcase_15 | AC | 1,074 ms
238,592 KB |
testcase_16 | AC | 927 ms
212,608 KB |
testcase_17 | AC | 580 ms
142,208 KB |
testcase_18 | AC | 672 ms
160,128 KB |
testcase_19 | AC | 788 ms
183,936 KB |
testcase_20 | AC | 802 ms
187,776 KB |
testcase_21 | AC | 801 ms
187,008 KB |
testcase_22 | AC | 738 ms
172,160 KB |
testcase_23 | AC | 1,007 ms
229,632 KB |
testcase_24 | AC | 738 ms
177,152 KB |
testcase_25 | AC | 641 ms
155,520 KB |
testcase_26 | AC | 637 ms
153,344 KB |
testcase_27 | AC | 705 ms
168,192 KB |
testcase_28 | AC | 1,103 ms
246,272 KB |
testcase_29 | AC | 784 ms
185,856 KB |
testcase_30 | AC | 1,056 ms
239,744 KB |
testcase_31 | AC | 716 ms
173,696 KB |
testcase_32 | AC | 745 ms
178,816 KB |
testcase_33 | AC | 110 ms
11,008 KB |
testcase_34 | AC | 142 ms
10,880 KB |
testcase_35 | AC | 254 ms
48,640 KB |
testcase_36 | AC | 254 ms
48,512 KB |
ソースコード
#line 1 "main.cpp" #include <algorithm> #include <array> #include <bitset> #include <cassert> #include <cctype> #include <chrono> #include <cmath> #include <complex> #include <cstdint> #include <cstdlib> #include <deque> #include <functional> #include <iomanip> #include <iostream> #include <limits> #include <list> #include <map> #include <memory> #include <numeric> #include <queue> #include <random> #include <set> #include <stack> #include <string> #include <type_traits> #include <unordered_map> #include <utility> #include <vector> /* template start */ using i64 = std::int_fast64_t; using u64 = std::uint_fast64_t; i64 operator"" _i64(unsigned long long num){ return i64(num); } u64 operator"" _u64(unsigned long long num){ return u64(num); } #define rep(i, a, b) for (i64 i = (a); (i) < (b); (i)++) #define all(i) i.begin(), i.end() #ifdef LOCAL #define debug(...) \ std::cerr << "LINE: " << __LINE__ << " [" << #__VA_ARGS__ << "]:", \ debug_out(__VA_ARGS__) #else #define debug(...) #endif void debug_out() { std::cerr << std::endl; } template <typename Head, typename... Tail> void debug_out(Head h, Tail... t) { std::cerr << " " << h; if (sizeof...(t) > 0) std::cout << " :"; debug_out(t...); } template <typename T1, typename T2> std::ostream& operator<<(std::ostream& os, std::pair<T1, T2> pa) { return os << pa.first << " " << pa.second; } template <typename T> std::ostream& operator<<(std::ostream& os, std::vector<T> vec) { for (std::size_t i = 0; i < vec.size(); i++) os << vec[i] << (i + 1 == vec.size() ? "" : " "); return os; } template <typename T1, typename T2> inline bool chmax(T1& a, T2 b) { return a < b && (a = b, true); } template <typename T1, typename T2> inline bool chmin(T1& a, T2 b) { return a > b && (a = b, true); } template <typename Num> constexpr Num mypow(Num a, u64 b, Num id = 1) { if (b == 0) return id; Num x = id; while (b > 0) { if (b & 1) x *= a; a *= a; b >>= 1; } return x; } /* template end */ #line 2 "/home/imperi/cp-library/lib/utility/modint.hpp" /* author:noshi91 reference:https://noshi91.hatenablog.com/entry/2019/03/31/174006 https://github.com/noshi91/Library/blob/master/other/modint.cpp 1つめのmodintにoperator==,!=を追加したものです thx @noshi91!! */ #line 14 "/home/imperi/cp-library/lib/utility/modint.hpp" template <std::uint_fast64_t Modulus> class modint { using u64 = std::uint_fast64_t; public: u64 a; constexpr modint(const u64 x = 0) noexcept : a(x % Modulus) {} constexpr u64 &value() noexcept { return a; } constexpr const u64 &value() const noexcept { return a; } constexpr bool operator==(const modint rhs) const noexcept { return a == rhs.a; } constexpr bool operator!=(const modint rhs) const noexcept { return !(*this == rhs); } constexpr modint operator+(const modint rhs) const noexcept { return modint(*this) += rhs; } constexpr modint operator-(const modint rhs) const noexcept { return modint(*this) -= rhs; } constexpr modint operator*(const modint rhs) const noexcept { return modint(*this) *= rhs; } constexpr modint operator/(const modint rhs) const noexcept { return modint(*this) /= rhs; } constexpr modint &operator+=(const modint rhs) noexcept { a += rhs.a; if (a >= Modulus) { a -= Modulus; } return *this; } constexpr modint &operator-=(const modint rhs) noexcept { if (a < rhs.a) { a += Modulus; } a -= rhs.a; return *this; } constexpr modint &operator*=(const modint rhs) noexcept { a = a * rhs.a % Modulus; return *this; } constexpr modint &operator/=(modint rhs) noexcept { u64 exp = Modulus - 2; while (exp) { if (exp % 2) { *this *= rhs; } rhs *= rhs; exp /= 2; } return *this; } }; #line 100 "main.cpp" constexpr u64 MOD = 998244353; using mint = modint<MOD>; struct Monoid{ using value_t = std::pair<mint,mint>; static constexpr value_t id = {0,0}; static constexpr value_t op(value_t a,value_t b){ return {a.first+b.first,a.second+b.second}; } }; #line 2 "/home/imperi/cp-library/lib/SegmentTree/DynamicSegmentTree.hpp" #line 5 "/home/imperi/cp-library/lib/SegmentTree/DynamicSegmentTree.hpp" // Monoid // type value_t // static var id // static (value_t,value_t)->value_t op template <typename Monoid> class DynamicSegmentTree { public: using value_t = typename Monoid::value_t; using size_t = std::size_t; private: struct Node { value_t val; Node *left, *right, *par; Node(Node* par_ = nullptr) : val(Monoid::id), left(), right(), par(par_) {} ~Node() { if (left) delete left; if (right) delete right; left = nullptr; right = nullptr; par = nullptr; } }; using node_ptr = Node*; size_t n, n0; node_ptr root; value_t fold(size_t a, size_t b, const node_ptr& now, size_t l, size_t r) { if (a <= l && r <= b) return now->val; if (b <= l || r <= a) return Monoid::id; value_t lval = (now->left) ? fold(a, b, now->left, l, l + (r - l) / 2) : Monoid::id; value_t rval = (now->right) ? fold(a, b, now->right, l + (r - l) / 2, r) : Monoid::id; return Monoid::op(lval, rval); } void copy_dfs(node_ptr& node, const node_ptr& from) { node->val = from->val; if (from->left) { node->left = new Node(node); copy_dfs(node->left, from->left); } if (from->right) { node->right = new Node(node); copy_dfs(node->right, from->right); } } public: DynamicSegmentTree(size_t n_ = 0) : n(n_), root(nullptr) { n0 = 1; while (n0 < n) n0 <<= 1; } DynamicSegmentTree(const DynamicSegmentTree& from) { n = from.n; n0 = from.n0; root = nullptr; if (from.root) { root = new Node(); copy_dfs(root, from.root); } } DynamicSegmentTree& operator=(const DynamicSegmentTree& from) { n = from.n; n0 = from.n0; root = nullptr; if (from.root) { root = new Node(); copy_dfs(root, from.root); } } DynamicSegmentTree(DynamicSegmentTree&&) = default; DynamicSegmentTree& operator=(DynamicSegmentTree&&) = default; ~DynamicSegmentTree() { if (root) delete root; root = nullptr; } void update(size_t i, value_t val, bool change) { assert(0 <= i && i < n); if (!root) root = new Node(); node_ptr now = root; size_t l = 0, r = n0; while (r - l > 1) { size_t mid = l + (r - l) / 2; if (i < mid) { if (!now->left) now->left = new Node(now); now = now->left; r = mid; } else { if (!now->right) now->right = new Node(now); now = now->right; l = mid; } } if (change) now->val = val; else now->val = Monoid::op(now->val, val); while (now->par) { now = now->par; now->val = Monoid::op((now->left) ? now->left->val : Monoid::id, (now->right) ? now->right->val : Monoid::id); } } value_t fold(size_t a, size_t b) { assert(0 <= a && a <= b && b <= n); if (!root) return Monoid::id; return fold(a, b, root, 0, n0); } }; #line 114 "main.cpp" int main() { std::cin.tie(nullptr); std::ios::sync_with_stdio(false); i64 n; std::cin>>n; std::vector<i64> a(n); for(auto&& e:a)std::cin>>e; std::reverse(all(a)); constexpr i64 INF = 1e10; DynamicSegmentTree<Monoid> seg1(INF),seg2(INF); std::vector<mint> left_sum(n,0),right_sum(n,0); std::vector<mint> left_cnt(n,1),right_cnt(n,1); rep(i,0,n){ auto tmp = seg1.fold(0,a[i]); left_sum[i] = tmp.first; left_cnt[i] = tmp.second; seg1.update(a[i],Monoid::value_t(a[i],1),false); } for(i64 i = n-1;i>=0;i--){ auto tmp = seg2.fold(a[i]+1,INF); right_sum[i] = tmp.first; right_cnt[i] = tmp.second; seg2.update(a[i],Monoid::value_t(a[i],1),false); } mint ans = 0; rep(i,0,n){ ans += left_sum[i] * right_cnt[i]; ans += right_sum[i] * left_cnt[i]; ans += left_cnt[i] * right_cnt[i] * a[i]; } rep(i,0,n){ debug(i,left_sum[i].value(),left_cnt[i].value()); } for(i64 i = n-1;i>=0;i--){ debug(i,right_sum[i].value(),right_cnt[i].value()); } std::cout<<ans.value()<<"\n"; return 0; }