結果
| 問題 |
No.1300 Sum of Inversions
|
| コンテスト | |
| ユーザー |
Gosu_Hiroo
|
| 提出日時 | 2020-11-27 21:55:31 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 454 ms / 2,000 ms |
| コード長 | 18,851 bytes |
| コンパイル時間 | 2,863 ms |
| コンパイル使用メモリ | 214,712 KB |
| 最終ジャッジ日時 | 2025-01-16 07:06:35 |
|
ジャッジサーバーID (参考情報) |
judge5 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 34 |
ソースコード
/**
* code generated by JHelper
* More info: https://github.com/AlexeyDmitriev/JHelper
* @author Gosu_Hiroo
*/
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
template<typename T, typename U = T>
using P = pair<T, U>;
//#pragma GCC optimize("O3")
//#pragma GCC target("avx2")
//#pragma GCC target("avx512f")
//#pragma GCC optimize("unroll-loops")
//#pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native")
//#pragma GCC optimize("Ofast")
#define V vector
#define G(size_1) vector<vector<int>>(size_1, vector<int>())
#define SZ(x) ((long long)(x).size())
#define READ ({long long t;cin >> t;t;})
#define FOR(i, __begin, __end) for (auto i = (__begin) - ((__begin) > (__end)); i != (__end) - ((__begin) > (__end)); i += 1 - 2 * ((__begin) > (__end)))
#define REP(i, __end) for (auto i = decltype(__end){0}; i < (__end); ++i)
#define ALL(x) (x).begin(),(x).end()
#define RALL(x) (x).rbegin(),(x).rend()
#define F first
#define S second
#define y0 y3487465
#define y1 y8687969
#define j0 j1347829
#define j1 j234892
#define BIT(n) (1LL<<(n))
#define UNIQUE(v) v.erase( unique(v.begin(), v.end()), v.end() );
#define EB emplace_back
#define PB push_back
#define fcout cout << fixed << setprecision(12)
#define fcerr cerr << fixed << setprecision(12)
#define print(x) cout << (x) << '\n'
#define printE(x) cout << (x) << '\n';
#define fprint(x) cout << fixed << setprecision(12) << (x) << '\n';
# define BYE(a) do { cout << (a) << endl; return ; } while (false)
#define LB lower_bound
#define UB upper_bound
#define LBI(c, x) distance((c).begin(), lower_bound((c).begin(), (c).end(), (x)))
#define UBI(c, x) distance((c).begin(), upper_bound((c).begin(), (c).end(), (x)))
#ifdef DEBUG
#define DBG(args...) { string _s = #args; replace(_s.begin(), _s.end(), ',', ' '); stringstream _ss(_s); istream_iterator<string> _it(_ss); _err(cerr,_it, args); }
#define ERR(args...) { string _s = #args; replace(_s.begin(), _s.end(), ',', ' '); stringstream _ss(_s); istream_iterator<string> _it(_ss); _err(std::cerr,_it, args); }
#else
#define DBG(args...) {};
#define ERR(args...) {};
#endif
void _err(std::ostream& cerr, istream_iterator<string> it){cerr << endl;}
template<typename T, typename... Args>
void _err(std::ostream& cerr, istream_iterator<string> it, T a, Args... args){
cerr << *it << " = " << a << " ";
_err(cerr, ++it, args...);
}
namespace aux{
template<std::size_t...>
struct seq{
};
template<std::size_t N, std::size_t... Is>
struct gen_seq : gen_seq<N - 1, N - 1, Is...>{
};
template<std::size_t... Is>
struct gen_seq<0, Is...> : seq<Is...>{
};
template<class Ch, class Tr, class Tuple, std::size_t... Is>
void print_tuple(std::basic_ostream<Ch, Tr>& os, Tuple const& t, seq<Is...>){
using swallow = int[];
(void) swallow{0, (void(os << (Is == 0 ? "" : ",") << std::get<Is>(t)), 0)...};
}
template<class Ch, class Tr, class Tuple, std::size_t... Is>
void read_tuple(std::basic_istream<Ch, Tr>& os, Tuple& t, seq<Is...>){
using swallow = int[];
(void) swallow{0, (void(os >> std::get<Is>(t)), 0)...};
}
} // aux::
template<class Ch, class Tr, class... Args>
auto operator<<(std::basic_ostream<Ch, Tr>& os, std::tuple<Args...> const& t)
-> std::basic_ostream<Ch, Tr>&{
os << "(";
aux::print_tuple(os, t, aux::gen_seq<sizeof...(Args)>());
return os << ")";
}
template<class Ch, class Tr, class... Args>
auto operator>>(std::basic_istream<Ch, Tr>& os, std::tuple<Args...>& t)
-> std::basic_istream<Ch, Tr>&{
aux::read_tuple(os, t, aux::gen_seq<sizeof...(Args)>());
return os;
}
template<class T>
inline bool chmax(T& a, const T& b){
if(a < b){
a = b;
return 1;
}
return 0;
}
template<class T>
inline bool chmin(T& a, const T& b){
if(b < a){
a = b;
return 1;
}
return 0;
}
template<typename T, typename U>
istream& operator>>(istream& is, pair<T, U>& V){
is >> V.F >> V.S;
return is;
}
template<typename T>
istream& operator>>(istream& is, vector <T>& V){
for(auto&& ele : V)is >> ele;
return is;
}
template<typename T>
ostream& operator<<(ostream& os, const vector <T> V){
os << "[";
int cnt = 0;
T curr;
if(!V.empty()){
for(int i = 0; i < V.size() - 1; ++i){
if(V[i] == curr)cnt++;
else cnt = 0;
if(cnt == 4)os << "... ";
if(cnt < 4)
os << i << ":" << V[i] << " ";
curr = V[i];
}
os << V.size() - 1 << ":" << V.back();
}
os << "]\n";
return os;
}
template<typename T, typename U>
ostream& operator<<(ostream& os, const pair<T, U> P){
os << "(";
os << P.first << "," << P.second;
os << ")";
return os;
}
template<typename T, typename U>
ostream& operator<<(ostream& os, const set<T, U> V){
os << "{";
if(!V.empty()){
auto it = V.begin();
for(int i = 0; i < V.size() - 1; ++i){
os << *it << " ";
it++;
}
os << *it;
}
os << "}\n";
return os;
}
template<typename K, typename H, typename P>
ostream& operator<<(ostream& os, const unordered_set<K, H, P> V){
os << "{";
if(!V.empty()){
auto it = V.begin();
for(int i = 0; i < V.size() - 1; ++i){
os << *it << " ";
it++;
}
os << *it;
}
os << "}\n";
return os;
}
template<typename K, typename C>
ostream& operator<<(ostream& os, const multiset<K, C> V){
os << "{";
if(!V.empty()){
auto it = V.begin();
for(int i = 0; i < V.size() - 1; ++i){
os << *it << " ";
it++;
}
os << *it;
}
os << "}";
return os;
}
template<typename K, typename T, typename C>
ostream& operator<<(ostream& os, const map<K, T, C> V){
os << "{";
if(!V.empty()){
auto it = V.begin();
for(int i = 0; i < V.size() - 1; ++i){
os << "(";
os << it->first << "," << it->second;
os << ") ";
it++;
}
os << "(";
os << it->first << "," << it->second;
os << ")";
}
os << "}\n";
return os;
}
template<typename K, typename T, typename C>
ostream& operator<<(ostream& os, const unordered_map<K, T, C> V){
os << "{";
if(!V.empty()){
auto it = V.begin();
for(int i = 0; i < V.size() - 1; ++i){
os << "(";
os << it->first << "," << it->second;
os << ") ";
it++;
}
os << "(";
os << it->first << "," << it->second;
os << ")";
}
os << "}\n";
return os;
}
template<typename T>
ostream& operator<<(ostream& os, const deque<T> V){
os << "[";
if(!V.empty()){
for(int i = 0; i < V.size() - 1; ++i){
os << V[i] << "->";
}
if(!V.empty())os << V.back();
}
os << "]\n";
return os;
};
template<typename T, typename Cont, typename Comp>
ostream& operator<<(ostream& os, const priority_queue<T, Cont, Comp> V){
priority_queue<T, Cont, Comp> _V = V;
os << "[";
if(!_V.empty()){
while(_V.size() > 1){
os << _V.top() << "->";
_V.pop();
}
os << _V.top();
}
os << "]\n";
return os;
};
template<class F>
struct y_combinator{
F f; // the lambda will be stored here
// a forwarding operator():
template<class... Args>
decltype(auto) operator()(Args&& ... args) const{
// we pass ourselves to f, then the arguments.
// the lambda should take the first argument as `auto&& recurse` or similar.
return f(*this, std::forward<Args>(args)...);
}
};
// helper function that deduces the type of the lambda:
template<class F>
y_combinator<std::decay_t<F>> recursive(F&& f){
return {std::forward<F>(f)};
}
struct hash_pair{
template<class T1, class T2>
size_t operator()(const pair<T1, T2>& p) const{
auto hash1 = hash<T1>{}(p.first);
auto hash2 = hash<T2>{}(p.second);
return hash1^hash2;
}
};
template<typename U>
auto vec(int n, U v){
return std::vector(n, v);
}
template<typename... Args>
auto vec(int n, Args... args){
auto val = vec(std::forward<Args>(args)...);
return std::vector<decltype(val)>(n, std::move(val));
}
const double PI = 2*acos(.0);
const int INF = 0x3f3f3f3f;
template<class T>
inline T ceil(T a, T b){return (a + b - 1)/b;}
inline long long popcount(ll x){return __builtin_popcountll(x);}
class No1300SumOfInversions{
public:
void solve(std::istream&, std::ostream&, std::ostream&);
};
template<typename T>
struct Compress{
vector<T> xs;
Compress() = default;
Compress(const vector<T>& vs){
add(vs);
}
Compress(const initializer_list<vector<T> >& vs){
for(auto& p : vs) add(p);
}
void add(const vector<T>& vs){
copy(begin(vs), end(vs), back_inserter(xs));
}
void add(const T& x){
xs.emplace_back(x);
}
void build(){
sort(begin(xs), end(xs));
xs.erase(unique(begin(xs), end(xs)), end(xs));
}
vector<int> get(const vector<T>& vs) const{
vector<int> ret;
transform(begin(vs), end(vs), back_inserter(ret), [&](const T& x){
return lower_bound(begin(xs), end(xs), x) - begin(xs);
});
return ret;
}
int get(const T& x) const{
return lower_bound(begin(xs), end(xs), x) - begin(xs);
}
const T& operator[](int k) const{
return xs[k];
}
};
template<signed M, unsigned T>
struct mod_int{
constexpr static signed MODULO = M;
constexpr static unsigned TABLE_SIZE = T;
signed x;
mod_int() : x(0){}
mod_int(long long y) : x(static_cast<signed>(y >= 0 ? y%MODULO : MODULO - (-y)%MODULO)){}
mod_int(int y) : x(y >= 0 ? y%MODULO : MODULO - (-y)%MODULO){}
explicit operator int() const{
return x;
}
explicit operator long long() const{
return x;
}
explicit operator double() const{
return x;
}
mod_int& operator+=(const mod_int& rhs){
if((x += rhs.x) >= MODULO) x -= MODULO;
return *this;
}
mod_int& operator-=(const mod_int& rhs){
if((x += MODULO - rhs.x) >= MODULO) x -= MODULO;
return *this;
}
mod_int& operator*=(const mod_int& rhs){
x = static_cast<signed>(1LL*x*rhs.x%MODULO);
return *this;
}
mod_int& operator/=(const mod_int& rhs){
x = static_cast<signed>((1LL*x*rhs.inv().x)%MODULO);
return *this;
}
mod_int operator-() const{return mod_int(-x);}
mod_int operator+(const mod_int& rhs) const{return mod_int(*this) += rhs;}
mod_int operator-(const mod_int& rhs) const{return mod_int(*this) -= rhs;}
mod_int operator*(const mod_int& rhs) const{return mod_int(*this) *= rhs;}
mod_int operator/(const mod_int& rhs) const{return mod_int(*this) /= rhs;}
bool operator<(const mod_int& rhs) const{return x < rhs.x;}
mod_int inv() const{
assert(x != 0);
if(x <= static_cast<signed>(TABLE_SIZE)){
if(_inv[1].x == 0) prepare();
return _inv[x];
}else{
signed a = x, b = MODULO, u = 1, v = 0, t;
while(b){
t = a/b;
a -= t*b;
std::swap(a, b);
u -= t*v;
std::swap(u, v);
}
return mod_int(u);
}
}
mod_int pow(long long t) const{
assert(!(x == 0 && t == 0));
mod_int e = *this, res = mod_int(1);
for(; t; e *= e, t >>= 1)
if(t&1) res *= e;
return res;
}
mod_int fact(){
if(_fact[0].x == 0) prepare();
return _fact[x];
}
mod_int inv_fact(){
if(_fact[0].x == 0) prepare();
return _inv_fact[x];
}
mod_int choose(mod_int y){
assert(y.x <= x);
return this->fact()*y.inv_fact()*mod_int(x - y.x).inv_fact();
}
static mod_int _inv[TABLE_SIZE + 1];
static mod_int _fact[TABLE_SIZE + 1];
static mod_int _inv_fact[TABLE_SIZE + 1];
static void prepare(){
_inv[1] = 1;
for(int i = 2; i <= (int) TABLE_SIZE; ++i){
_inv[i] = 1LL*_inv[MODULO%i].x*(MODULO - MODULO/i)%MODULO;
}
_fact[0] = 1;
for(unsigned i = 1; i <= TABLE_SIZE; ++i){
_fact[i] = _fact[i - 1]*int(i);
}
_inv_fact[TABLE_SIZE] = _fact[TABLE_SIZE].inv();
for(int i = (int) TABLE_SIZE - 1; i >= 0; --i){
_inv_fact[i] = _inv_fact[i + 1]*(i + 1);
}
}
};
template<int M, unsigned F>
std::ostream& operator<<(std::ostream& os, const mod_int<M, F>& rhs){
return os << rhs.x;
}
template<int M, unsigned F>
std::istream& operator>>(std::istream& is, mod_int<M, F>& rhs){
long long s;
is >> s;
rhs = mod_int<M, F>(s);
return is;
}
template<int M, unsigned F>
mod_int<M, F> mod_int<M, F>::_inv[TABLE_SIZE + 1];
template<int M, unsigned F>
mod_int<M, F> mod_int<M, F>::_fact[TABLE_SIZE + 1];
template<int M, unsigned F>
mod_int<M, F> mod_int<M, F>::_inv_fact[TABLE_SIZE + 1];
template<int M, unsigned F>
bool operator==(const mod_int<M, F>& lhs, const mod_int<M, F>& rhs){
return lhs.x == rhs.x;
}
template<int M, unsigned F>
bool operator!=(const mod_int<M, F>& lhs, const mod_int<M, F>& rhs){
return !(lhs == rhs);
}
constexpr int MF = 1000010;
//constexpr int MOD = 1000000007;
constexpr int MOD = 998244353;
using mint = mod_int<MOD, MF>;
mint binom(int n, int r){return (r < 0 || r > n || n < 0) ? 0 : mint(n).choose(r);}
mint fact(int n){return mint(n).fact();}
mint inv_fact(int n){return mint(n).inv_fact();}
#ifndef ATCODER_SEGTREE_HPP
#define ATCODER_SEGTREE_HPP 1
#include <algorithm>
#ifndef ATCODER_INTERNAL_BITOP_HPP
#define ATCODER_INTERNAL_BITOP_HPP 1
#ifdef _MSC_VER
#include <intrin.h>
#endif
namespace atcoder {
namespace internal {
// @param n `0 <= n`
// @return minimum non-negative `x` s.t. `n <= 2**x`
int ceil_pow2(int n) {
int x = 0;
while ((1U << x) < (unsigned int)(n)) x++;
return x;
}
// @param n `1 <= n`
// @return minimum non-negative `x` s.t. `(n & (1 << x)) != 0`
int bsf(unsigned int n) {
#ifdef _MSC_VER
unsigned long index;
_BitScanForward(&index, n);
return index;
#else
return __builtin_ctz(n);
#endif
}
} // namespace internal
} // namespace atcoder
#endif // ATCODER_INTERNAL_BITOP_HPP
#include <cassert>
#include <vector>
namespace atcoder {
template <class S, S (*op)(S, S), S (*e)()> struct segtree {
public:
std::vector<S> d;
segtree() : segtree(0) {}
segtree(int n) : segtree(std::vector<S>(n, e())) {}
segtree(const std::vector<S>& v) : _n(int(v.size())) {
log = internal::ceil_pow2(_n);
size = 1 << log;
d = std::vector<S>(2 * size, e());
for (int i = 0; i < _n; i++) d[size + i] = v[i];
for (int i = size - 1; i >= 1; i--) {
update(i);
}
}
void set(int p, S x) {
assert(0 <= p && p < _n);
p += size;
d[p] = x;
for (int i = 1; i <= log; i++) update(p >> i);
}
S get(int p) {
assert(0 <= p && p < _n);
return d[p + size];
}
S prod(int l, int r) {
assert(0 <= l && l <= r && r <= _n);
S sml = e(), smr = e();
l += size;
r += size;
while (l < r) {
if (l & 1) sml = op(sml, d[l++]);
if (r & 1) smr = op(d[--r], smr);
l >>= 1;
r >>= 1;
}
return op(sml, smr);
}
S all_prod() { return d[1]; }
template <bool (*f)(S)> int max_right(int l) {
return max_right(l, [](S x) { return f(x); });
}
template <class F> int max_right(int l, F f) {
assert(0 <= l && l <= _n);
assert(f(e()));
if (l == _n) return _n;
l += size;
S sm = e();
do {
while (l % 2 == 0) l >>= 1;
if (!f(op(sm, d[l]))) {
while (l < size) {
l = (2 * l);
if (f(op(sm, d[l]))) {
sm = op(sm, d[l]);
l++;
}
}
return l - size;
}
sm = op(sm, d[l]);
l++;
} while ((l & -l) != l);
return _n;
}
template <bool (*f)(S)> int min_left(int r) {
return min_left(r, [](S x) { return f(x); });
}
template <class F> int min_left(int r, F f) {
assert(0 <= r && r <= _n);
assert(f(e()));
if (r == 0) return 0;
r += size;
S sm = e();
do {
r--;
while (r > 1 && (r % 2)) r >>= 1;
if (!f(op(d[r], sm))) {
while (r < size) {
r = (2 * r + 1);
if (f(op(d[r], sm))) {
sm = op(d[r], sm);
r--;
}
}
return r + 1 - size;
}
sm = op(d[r], sm);
} while ((r & -r) != r);
return 0;
}
S operator[](int p){
assert(0 <= p && p < _n);
return d[p + size];
}
private:
int _n, size, log;
// std::vector<S> d;
void update(int k) { d[k] = op(d[2 * k], d[2 * k + 1]); }
};
} // namespace atcoder
#endif // ATCODER_SEGTREE_HPP
using namespace atcoder;
namespace arg{
using S = mint;
S op(S s1, S s2){
return s1 + s2;
}
S unit(){
return 0;
}
}
using st = segtree<arg::S, arg::op, arg::unit>;
void No1300SumOfInversions::solve(std::istream& cin, std::ostream& cout, std::ostream& cerr){
int N;
cin >> N;
V<ll> a(N);
cin >> a;
Compress<ll> compress(a);
compress.build();
auto a_i = compress.get(a);
st seg(N), seg2(N);
st segc(N), segc2(N);
V<mint> s1(N), s2(N);
V<mint> c1(N), c2(N);
REP(i, N){
s1[i] = seg.prod(a_i[i] + 1, N);
seg.set(a_i[i], seg[a_i[i]] + a[i]);
c1[i] = segc.prod(a_i[i] + 1, N);
segc.set(a_i[i], segc[a_i[i]] + 1);
}
FOR(i, N, 0){
s2[i] = seg2.prod(0, a_i[i]);
seg2.set(a_i[i], seg2[a_i[i]] + a[i]);
c2[i] = segc2.prod(0, a_i[i]);
segc2.set(a_i[i], segc2[a_i[i]] + 1);
}
DBG(s1, s2, c1, c2)
mint ans = 0;
FOR(i, 1, N - 1)ans += c1[i]*(s2[i]) + c2[i]*(s1[i]) + c1[i]*c2[i]*a[i];
print(ans);
}
#undef int
int main() {
No1300SumOfInversions solver;
std::istream& in(std::cin);
std::ostream& out(std::cout);
std::ostringstream err;
in.tie(0); ios::sync_with_stdio(0);
solver.solve(in, out,err);
return 0;
}
Gosu_Hiroo