結果

問題 No.1193 Penguin Sequence
ユーザー saksak
提出日時 2021-01-06 03:42:41
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 735 ms / 2,000 ms
コード長 3,132 bytes
コンパイル時間 2,586 ms
コンパイル使用メモリ 214,900 KB
実行使用メモリ 29,456 KB
最終ジャッジ日時 2024-11-06 11:21:31
合計ジャッジ時間 22,292 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 546 ms
19,520 KB
testcase_01 AC 711 ms
29,456 KB
testcase_02 AC 710 ms
29,424 KB
testcase_03 AC 717 ms
29,376 KB
testcase_04 AC 721 ms
25,328 KB
testcase_05 AC 718 ms
29,428 KB
testcase_06 AC 732 ms
29,376 KB
testcase_07 AC 723 ms
25,184 KB
testcase_08 AC 727 ms
25,252 KB
testcase_09 AC 735 ms
29,380 KB
testcase_10 AC 735 ms
25,168 KB
testcase_11 AC 367 ms
21,268 KB
testcase_12 AC 384 ms
21,316 KB
testcase_13 AC 619 ms
27,508 KB
testcase_14 AC 568 ms
26,544 KB
testcase_15 AC 676 ms
28,460 KB
testcase_16 AC 423 ms
16,808 KB
testcase_17 AC 12 ms
11,032 KB
testcase_18 AC 54 ms
12,412 KB
testcase_19 AC 707 ms
29,068 KB
testcase_20 AC 531 ms
26,120 KB
testcase_21 AC 417 ms
20,080 KB
testcase_22 AC 66 ms
13,108 KB
testcase_23 AC 350 ms
20,628 KB
testcase_24 AC 290 ms
17,620 KB
testcase_25 AC 127 ms
15,092 KB
testcase_26 AC 38 ms
12,340 KB
testcase_27 AC 584 ms
27,204 KB
testcase_28 AC 385 ms
19,404 KB
testcase_29 AC 614 ms
27,340 KB
testcase_30 AC 182 ms
16,576 KB
testcase_31 AC 150 ms
15,620 KB
testcase_32 AC 451 ms
24,872 KB
testcase_33 AC 298 ms
17,904 KB
testcase_34 AC 238 ms
18,724 KB
testcase_35 AC 300 ms
20,088 KB
testcase_36 AC 228 ms
18,468 KB
testcase_37 AC 566 ms
26,976 KB
testcase_38 AC 11 ms
11,028 KB
testcase_39 AC 12 ms
11,128 KB
testcase_40 AC 11 ms
11,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
typedef long long ll;
typedef pair<ll, ll> p_ll;

template<class T>
void debug(T itr1, T itr2) { auto now = itr1; while(now<itr2) { cout << *now << " "; now++; } cout << endl; }
#define repr(i,from,to) for (ll i=(ll)from; i<(ll)to; i++)
#define all(vec) vec.begin(), vec.end()
#define rep(i,N) repr(i,0,N)
#define per(i,N) for (int i=(int)N-1; i>=0; i--)

const ll MOD = 998244353;
const ll LLINF = pow(2,61)-1;
const int INF = pow(2,30)-1;

vector<ll> fac;
void c_fac(int x=pow(10,6)+10) { fac.resize(x,true); rep(i,x) fac[i] = i ? (fac[i-1]*i)%MOD : 1; }
ll modpow(ll x, ll p) { ll result = 1, now = 1, pm = x; while (now<=p) { if (p&now) { result = result * pm % MOD; } now*=2; pm = pm*pm % MOD; } return result; }
ll inv(ll a, ll m=MOD) { ll b = m, x = 1, y = 0; while (b!=0) { int d = a/b; a -= b*d; swap(a,b); x -= y*d; swap(x,y); } return (x+m)%m; }
ll nck(ll n, ll k) { return k<0||k>n ? 0 : fac[n]*inv(fac[k]*fac[n-k]%MOD)%MOD; }
ll gcd(ll a, ll b) { if (a<b) swap(a,b); return b==0 ? a : gcd(b, a%b); }
ll lcm(ll a, ll b) { return a/gcd(a,b)*b; }

// ----------------------------------------------------------------------
// ----------------------------------------------------------------------

struct SegTree {
  ll size;
  vector<ll> pos;
  SegTree(ll N) { size = 1; while(size<N) size<<=1; pos.resize(2*size,0); }
  ll operator[](const ll &x) const { return pos[x+size]; }

  void set(ll x, const ll v) { pos[x+size] = v; }
  void update(ll x, const ll v) { set(x,v); x+=size; while (x>>=1) operate(x); }
  ll query(ll a, ll b) {
    ll L = 0, R = 0;
    for (a+=size, b+=size; a<b; a>>=1, b>>=1) {
      if (a&1) { L = q(L,pos[a]); a++; }
      if (b&1) { b--; R = q(pos[b],R); }
    }
    return q(L,R);
  }
  void operate(ll i) { pos[i] = q(pos[i*2], pos[i*2+1]); }
  ll q(ll x, ll y) { return x + y; }
};

// ----------------------------------------------------------------------
// ----------------------------------------------------------------------

vector<ll> zaatsu(vector<ll> &list) {
  map<ll, ll> num; for (auto x: list) num[x]++;
  ll p = 0; for (auto x: num) { num[x.first] = p; p++; }
  vector<ll> result; for (auto x: list) result.push_back(num[x]);
  return result;
}

// ----------------------------------------------------------------------
// ----------------------------------------------------------------------

int main() {
  ll N; cin >> N;
  vector<ll> A(N); rep(i,N) cin >> A[i];

  A = zaatsu(A);
  // debug(all(A));

  SegTree st(N);
  ll ten = 0; rep(i,N) { ten = (ten+st.query(A[i]+1,N)) % MOD; st.update(A[i],st[A[i]]+1); }
  ll later = 0; rep(i,N) later = (later+st[i]*st.query(i+1,N)) % MOD;
  // cout << ten << " " << later << endl;

  c_fac();
  ll allc = 1; rep(i,N) allc = allc * nck(N,i+1) % MOD;
  ll invn2 = modpow(inv(N),2);

  ll res1 = 0, res2 = 0;
  rep(i,N) {
    ll c1 = i+1, c2 = (i+2+N)*(N-(i+1))/2%MOD;
    res1 = (res1+allc*invn2%MOD*c1%MOD*c2%MOD*later%MOD) % MOD;
    res2 = (res2+allc*inv(nck(N,i+1))%MOD*nck(N-2,i-1)%MOD*ten%MOD) % MOD;
  }
  ll result = (res1+res2) % MOD;
  cout << result << endl;
  return 0;
}
0