結果

問題 No.1300 Sum of Inversions
ユーザー tailstails
提出日時 2020-11-27 23:00:07
言語 cLay
(20240714-1)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 426 bytes
コンパイル時間 7,453 ms
コンパイル使用メモリ 220,836 KB
実行使用メモリ 13,824 KB
最終ジャッジ日時 2024-07-05 14:48:24
合計ジャッジ時間 9,890 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,656 KB
testcase_01 AC 4 ms
6,528 KB
testcase_02 AC 4 ms
6,656 KB
testcase_03 AC 59 ms
12,416 KB
testcase_04 AC 56 ms
12,416 KB
testcase_05 AC 46 ms
11,392 KB
testcase_06 AC 66 ms
13,056 KB
testcase_07 AC 62 ms
12,800 KB
testcase_08 AC 68 ms
13,312 KB
testcase_09 AC 68 ms
13,312 KB
testcase_10 AC 39 ms
10,752 KB
testcase_11 AC 40 ms
10,880 KB
testcase_12 AC 57 ms
12,416 KB
testcase_13 AC 55 ms
12,288 KB
testcase_14 AC 74 ms
13,824 KB
testcase_15 AC 68 ms
13,312 KB
testcase_16 AC 59 ms
12,544 KB
testcase_17 AC 37 ms
10,752 KB
testcase_18 AC 42 ms
11,264 KB
testcase_19 AC 50 ms
11,904 KB
testcase_20 AC 52 ms
11,904 KB
testcase_21 AC 50 ms
11,904 KB
testcase_22 AC 46 ms
11,520 KB
testcase_23 AC 64 ms
13,056 KB
testcase_24 AC 48 ms
11,648 KB
testcase_25 AC 41 ms
11,264 KB
testcase_26 AC 41 ms
11,136 KB
testcase_27 AC 45 ms
11,520 KB
testcase_28 AC 69 ms
13,312 KB
testcase_29 AC 53 ms
11,904 KB
testcase_30 AC 68 ms
13,312 KB
testcase_31 AC 47 ms
11,392 KB
testcase_32 AC 49 ms
11,520 KB
testcase_33 AC 52 ms
10,112 KB
testcase_34 AC 55 ms
10,752 KB
testcase_35 AC 54 ms
13,056 KB
testcase_36 AC 56 ms
13,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define MD 998244353
int a[2d5],c[2d5];
{
	fenwick<Mint>f1,f2,g1,g2;
	f1.walloc(2d5,1);
	f2.walloc(2d5,1);
	g1.walloc(2d5,1);
	g2.walloc(2d5,1);
	Mint sum=0;
	ll @n;
	rd(a(n));
	coordcomp(n,a,c);
	rep(i,n){
		sum+=a[i]*g2.range(c[i]+1,2d5-1)+f2.range(c[i]+1,2d5-1);
		g2.add(c[i],g1.range(c[i]+1,2d5-1));
		g1.add(c[i],1);
		f2.add(c[i],a[i]*g1.range(c[i]+1,2d5-1)+f1.range(c[i]+1,2d5-1));
		f1.add(c[i],a[i]);
	}
	wt(sum);
}
0