結果

問題 No.1193 Penguin Sequence
ユーザー kmjpkmjp
提出日時 2020-08-22 17:38:58
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 172 ms / 2,000 ms
コード長 2,185 bytes
コンパイル時間 2,287 ms
コンパイル使用メモリ 209,688 KB
実行使用メモリ 17,908 KB
最終ジャッジ日時 2024-10-15 11:27:01
合計ジャッジ時間 9,091 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
16,972 KB
testcase_01 AC 172 ms
17,908 KB
testcase_02 AC 171 ms
17,724 KB
testcase_03 AC 171 ms
16,840 KB
testcase_04 AC 171 ms
16,804 KB
testcase_05 AC 171 ms
17,428 KB
testcase_06 AC 172 ms
16,612 KB
testcase_07 AC 171 ms
17,528 KB
testcase_08 AC 171 ms
16,920 KB
testcase_09 AC 171 ms
17,220 KB
testcase_10 AC 171 ms
16,412 KB
testcase_11 AC 104 ms
16,476 KB
testcase_12 AC 105 ms
16,204 KB
testcase_13 AC 147 ms
17,800 KB
testcase_14 AC 140 ms
16,700 KB
testcase_15 AC 161 ms
17,852 KB
testcase_16 AC 128 ms
16,432 KB
testcase_17 AC 2 ms
6,816 KB
testcase_18 AC 30 ms
16,316 KB
testcase_19 AC 169 ms
16,916 KB
testcase_20 AC 136 ms
17,636 KB
testcase_21 AC 112 ms
17,292 KB
testcase_22 AC 34 ms
17,776 KB
testcase_23 AC 98 ms
16,436 KB
testcase_24 AC 86 ms
16,076 KB
testcase_25 AC 49 ms
16,648 KB
testcase_26 AC 26 ms
16,188 KB
testcase_27 AC 144 ms
17,044 KB
testcase_28 AC 106 ms
16,732 KB
testcase_29 AC 149 ms
17,472 KB
testcase_30 AC 63 ms
15,940 KB
testcase_31 AC 54 ms
16,880 KB
testcase_32 AC 121 ms
16,368 KB
testcase_33 AC 90 ms
15,972 KB
testcase_34 AC 75 ms
17,248 KB
testcase_35 AC 90 ms
17,232 KB
testcase_36 AC 73 ms
16,712 KB
testcase_37 AC 143 ms
16,200 KB
testcase_38 AC 18 ms
15,808 KB
testcase_39 AC 18 ms
15,852 KB
testcase_40 AC 19 ms
15,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;

#undef _P
#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<(to);x++)
#define FORR(x,arr) for(auto& x:arr)
#define ITR(x,c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
//-------------------------------------------------------

int N;
int A[202020];
const ll mo=998244353;

template<class V, int ME> class BIT {
public:
	V bit[1<<ME];
	V operator()(int e) {if(e<0) return 0;V s=0;e++;while(e) s+=bit[e-1],e-=e&-e; return s;}
	void add(int e,V v) { e++; while(e<=1<<ME) bit[e-1]+=v,e+=e&-e;}
};
BIT<int,20> bt;

ll modpow(ll a, ll n = mo-2) {
	ll r=1;a%=mo;
	while(n) r=r*((n%2)?a:1)%mo,a=a*a%mo,n>>=1;
	return r;
}

ll comb(ll N_, ll C_) {
	const int NUM_=400001;
	static ll fact[NUM_+1],factr[NUM_+1],inv[NUM_+1];
	if (fact[0]==0) {
		inv[1]=fact[0]=factr[0]=1;
		for (int i=2;i<=NUM_;++i) inv[i] = inv[mo % i] * (mo - mo / i) % mo;
		for (int i=1;i<=NUM_;++i) fact[i]=fact[i-1]*i%mo, factr[i]=factr[i-1]*inv[i]%mo;
	}
	if(C_<0 || C_>N_) return 0;
	return factr[C_]*fact[N_]%mo*factr[N_-C_]%mo;
}
ll hcomb(int P_,int Q_) { return (P_==0&&Q_==0)?1:comb(P_+Q_-1,Q_);}

void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cin>>N;
	
	if(N==1) {
		cout<<0<<endl;
		return;
	}
	
	
	vector<int> V;
	FOR(i,N) {
		cin>>A[i];
		V.push_back(A[i]);
	}
	sort(ALL(V));
	V.erase(unique(ALL(V)),V.end());
	
	ll X=0,Y=0;
	FOR(i,N) {
		A[i]=lower_bound(ALL(V),A[i])-V.begin();
		X+=bt(A[i]-1);
		Y+=bt(N)-bt(A[i]);
		bt.add(A[i],1);
	}
	
	ll pat=1;
	for(i=1;i<=N;i++) pat=pat*comb(N,i)%mo;
	//同一ない
	ll ret=0;
	for(i=2;i<=N;i++) {
		ll p=comb(N-2,i-2)*modpow(comb(N,i))%mo;
		(ret+=p*pat%mo*(Y%mo))%=mo;
	}
	for(i=1;i<=N;i++) {
		ll p=i*modpow(N)%mo;
		ll q=1LL*i*(i-1)/2%mo*modpow(N)%mo;
		(ret+=p*pat%mo*q%mo*((X+Y)%mo))%=mo;
	}
	
	
	cout<<ret<<endl;
}


int main(int argc,char** argv){
	string s;int i;
	if(argc==1) ios::sync_with_stdio(false), cin.tie(0);
	FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
	cout.tie(0); solve(); return 0;
}
0