結果

問題 No.1193 Penguin Sequence
ユーザー 👑 kmjpkmjp
提出日時 2020-08-22 17:37:13
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,175 bytes
コンパイル時間 2,627 ms
コンパイル使用メモリ 204,020 KB
実行使用メモリ 18,300 KB
最終ジャッジ日時 2024-04-23 11:29:57
合計ジャッジ時間 8,932 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
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 AC 100 ms
16,368 KB
testcase_12 AC 102 ms
16,252 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 128 ms
16,356 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 30 ms
17,060 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 109 ms
16,876 KB
testcase_22 AC 32 ms
16,564 KB
testcase_23 AC 93 ms
16,736 KB
testcase_24 AC 85 ms
16,952 KB
testcase_25 AC 48 ms
17,348 KB
testcase_26 AC 26 ms
17,664 KB
testcase_27 WA -
testcase_28 AC 103 ms
17,352 KB
testcase_29 WA -
testcase_30 AC 60 ms
16,588 KB
testcase_31 AC 52 ms
16,360 KB
testcase_32 AC 115 ms
16,360 KB
testcase_33 AC 87 ms
16,136 KB
testcase_34 AC 73 ms
16,472 KB
testcase_35 AC 88 ms
16,740 KB
testcase_36 AC 72 ms
16,980 KB
testcase_37 WA -
testcase_38 AC 20 ms
17,148 KB
testcase_39 AC 18 ms
16,052 KB
testcase_40 AC 19 ms
16,896 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;
	}
	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;
	}
	
	
	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