結果
問題 | No.1300 Sum of Inversions |
ユーザー | chocorusk |
提出日時 | 2020-11-27 22:02:30 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,557 bytes |
コンパイル時間 | 1,662 ms |
コンパイル使用メモリ | 138,884 KB |
実行使用メモリ | 14,336 KB |
最終ジャッジ日時 | 2024-07-26 12:48:33 |
合計ジャッジ時間 | 9,477 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | AC | 44 ms
6,656 KB |
testcase_34 | AC | 100 ms
6,656 KB |
testcase_35 | AC | 152 ms
14,208 KB |
testcase_36 | AC | 172 ms
14,336 KB |
ソースコード
#include <cstdio> #include <cstring> #include <iostream> #include <string> #include <cmath> #include <bitset> #include <vector> #include <map> #include <set> #include <queue> #include <deque> #include <algorithm> #include <complex> #include <unordered_map> #include <unordered_set> #include <random> #include <cassert> #include <fstream> #include <utility> #include <functional> #include <time.h> #include <stack> #include <array> #include <list> #define popcount __builtin_popcount using namespace std; typedef long long ll; typedef pair<int, int> P; const ll MOD=998244353; ll powmod(ll a, ll k){ ll ap=a, ans=1; while(k){ if(k&1){ ans*=ap; ans%=MOD; } ap=ap*ap; ap%=MOD; k>>=1; } return ans; } ll inv(ll a){ return powmod(a, MOD-2); } ll f[2000010], invf[2000010]; void fac(int n){ f[0]=1; for(ll i=1; i<=n; i++) f[i]=f[i-1]*i%MOD; invf[n]=inv(f[n]); for(ll i=n-1; i>=0; i--) invf[i]=invf[i+1]*(i+1)%MOD; } ll comb(int x, int y){ if(!(0<=y && y<=x)) return 0; return f[x]*invf[y]%MOD*invf[x-y]%MOD; } template<typename T> struct BIT{ vector<T> bit; int size; BIT(int n):size(n), bit(n+1, 0){} T sum(int i){ //[0, i) T s=0; while(i>0){ s+=bit[i]; s%=MOD; i-=(i&(-i)); } return s; } T sum(int l, int r){ //[l, r) return (sum(r)-sum(l)+MOD)%MOD; } void add(int i, T x){ i++; while(i<=size){ bit[i]+=x; bit[i]%=MOD; i+=(i&(-i)); } } }; int main() { int n; cin>>n; ll a[200020]; vector<ll> v(n); for(int i=0; i<n; i++){ cin>>a[i]; a[i]%=MOD; v[i]=a[i]; } sort(v.begin(), v.end()); v.erase(unique(v.begin(), v.end()), v.end()); int m=v.size(); for(int i=0; i<n; i++){ a[i]=lower_bound(v.begin(), v.end(), a[i])-v.begin(); } BIT<ll> bit(m), bit2(m), bit3(m), bit4(m), bit5(m); ll ans=0; for(int i=0; i<n; i++) bit2.add(a[i], 1); for(int i=0; i<n; i++){ bit2.add(a[i], MOD-1); ll s=bit.sum(a[i]+1, m); (ans+=v[a[i]]*s%MOD*bit2.sum(a[i]))%=MOD; (ans+=v[a[i]]*bit3.sum(a[i]+1, m))%=MOD; bit.add(a[i], 1); bit3.add(a[i], s); } reverse(a, a+n); for(int i=0; i<n; i++){ ll s=bit4.sum(a[i]); (ans+=v[a[i]]*bit5.sum(a[i]))%=MOD; bit4.add(a[i], 1); bit5.add(a[i], s); } cout<<ans<<endl; return 0; }