結果

問題 No.2250 Split Permutation
ユーザー kotatsugamekotatsugame
提出日時 2023-03-17 21:51:58
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 119 ms / 3,000 ms
コード長 434 bytes
コンパイル時間 707 ms
コンパイル使用メモリ 75,220 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-18 10:42:56
合計ジャッジ時間 3,088 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 35
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<atcoder/modint>
#include<atcoder/fenwicktree>
using namespace std;
using mint=atcoder::modint998244353;
int N;
int main()
{
	cin>>N;
	atcoder::fenwick_tree<int>cnt(N);
	atcoder::fenwick_tree<mint>sum(N);
	mint ans=0;
	for(int i=0;i<N;i++)
	{
		int p;cin>>p;p--;
		ans+=mint(2).pow(N-1)*cnt.sum(p,N)-sum.sum(p,N)*mint(2).pow(N-i-1);
		cnt.add(p,1);
		sum.add(p,mint(2).pow(i));
	}
	cout<<ans.val()<<endl;
}
0