結果

問題 No.1193 Penguin Sequence
ユーザー saksak
提出日時 2021-01-06 03:42:41
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 770 ms / 2,000 ms
コード長 3,132 bytes
コンパイル時間 2,610 ms
コンパイル使用メモリ 208,624 KB
実行使用メモリ 29,496 KB
最終ジャッジ日時 2024-04-24 04:28:53
合計ジャッジ時間 23,528 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 554 ms
19,512 KB
testcase_01 AC 757 ms
29,380 KB
testcase_02 AC 769 ms
29,496 KB
testcase_03 AC 770 ms
29,372 KB
testcase_04 AC 766 ms
25,276 KB
testcase_05 AC 755 ms
29,368 KB
testcase_06 AC 761 ms
29,368 KB
testcase_07 AC 755 ms
25,276 KB
testcase_08 AC 759 ms
25,400 KB
testcase_09 AC 765 ms
29,372 KB
testcase_10 AC 756 ms
25,400 KB
testcase_11 AC 395 ms
21,332 KB
testcase_12 AC 404 ms
21,332 KB
testcase_13 AC 640 ms
27,540 KB
testcase_14 AC 599 ms
26,588 KB
testcase_15 AC 712 ms
28,500 KB
testcase_16 AC 434 ms
16,872 KB
testcase_17 AC 14 ms
11,008 KB
testcase_18 AC 57 ms
12,416 KB
testcase_19 AC 751 ms
29,140 KB
testcase_20 AC 569 ms
26,228 KB
testcase_21 AC 436 ms
20,036 KB
testcase_22 AC 69 ms
13,304 KB
testcase_23 AC 354 ms
20,748 KB
testcase_24 AC 302 ms
17,760 KB
testcase_25 AC 134 ms
15,308 KB
testcase_26 AC 40 ms
12,288 KB
testcase_27 AC 623 ms
27,116 KB
testcase_28 AC 402 ms
19,468 KB
testcase_29 AC 635 ms
27,380 KB
testcase_30 AC 198 ms
16,580 KB
testcase_31 AC 158 ms
15,708 KB
testcase_32 AC 486 ms
24,928 KB
testcase_33 AC 321 ms
18,008 KB
testcase_34 AC 256 ms
18,660 KB
testcase_35 AC 329 ms
20,040 KB
testcase_36 AC 248 ms
18,632 KB
testcase_37 AC 606 ms
26,856 KB
testcase_38 AC 14 ms
10,880 KB
testcase_39 AC 14 ms
11,008 KB
testcase_40 AC 14 ms
11,136 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