結果

問題 No.1193 Penguin Sequence
ユーザー 👑 kmjpkmjp
提出日時 2020-08-22 17:38:58
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 2,185 bytes
コンパイル時間 2,057 ms
コンパイル使用メモリ 204,164 KB
実行使用メモリ 17,676 KB
最終ジャッジ日時 2024-04-23 11:30:34
合計ジャッジ時間 7,649 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
17,080 KB
testcase_01 AC 149 ms
16,968 KB
testcase_02 AC 147 ms
17,052 KB
testcase_03 AC 149 ms
16,796 KB
testcase_04 AC 147 ms
16,848 KB
testcase_05 AC 149 ms
17,276 KB
testcase_06 AC 149 ms
17,648 KB
testcase_07 AC 151 ms
17,576 KB
testcase_08 AC 148 ms
17,512 KB
testcase_09 AC 151 ms
17,096 KB
testcase_10 AC 152 ms
16,924 KB
testcase_11 AC 88 ms
17,256 KB
testcase_12 AC 92 ms
16,920 KB
testcase_13 AC 129 ms
17,088 KB
testcase_14 AC 129 ms
17,664 KB
testcase_15 AC 139 ms
17,552 KB
testcase_16 AC 112 ms
16,520 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 27 ms
16,292 KB
testcase_19 AC 146 ms
17,056 KB
testcase_20 AC 119 ms
16,584 KB
testcase_21 AC 98 ms
16,204 KB
testcase_22 AC 29 ms
16,364 KB
testcase_23 AC 83 ms
16,600 KB
testcase_24 AC 76 ms
16,292 KB
testcase_25 AC 42 ms
16,812 KB
testcase_26 AC 22 ms
16,248 KB
testcase_27 AC 124 ms
17,676 KB
testcase_28 AC 93 ms
17,628 KB
testcase_29 AC 133 ms
16,364 KB
testcase_30 AC 55 ms
17,316 KB
testcase_31 AC 50 ms
16,376 KB
testcase_32 AC 109 ms
17,280 KB
testcase_33 AC 80 ms
16,108 KB
testcase_34 AC 67 ms
16,200 KB
testcase_35 AC 78 ms
17,064 KB
testcase_36 AC 63 ms
16,184 KB
testcase_37 AC 123 ms
16,488 KB
testcase_38 AC 16 ms
15,980 KB
testcase_39 AC 16 ms
15,736 KB
testcase_40 AC 16 ms
16,452 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