結果

問題 No.1300 Sum of Inversions
ユーザー ks2mks2m
提出日時 2020-11-27 23:03:33
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,601 bytes
コンパイル時間 3,033 ms
コンパイル使用メモリ 80,584 KB
実行使用メモリ 79,712 KB
最終ジャッジ日時 2024-07-26 19:19:45
合計ジャッジ時間 24,632 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
50,584 KB
testcase_01 AC 59 ms
50,316 KB
testcase_02 AC 57 ms
50,684 KB
testcase_03 AC 634 ms
77,080 KB
testcase_04 AC 635 ms
76,616 KB
testcase_05 AC 600 ms
70,444 KB
testcase_06 AC 646 ms
75,100 KB
testcase_07 AC 633 ms
76,760 KB
testcase_08 AC 685 ms
72,028 KB
testcase_09 AC 665 ms
72,584 KB
testcase_10 AC 427 ms
65,864 KB
testcase_11 AC 489 ms
65,620 KB
testcase_12 AC 624 ms
77,092 KB
testcase_13 AC 575 ms
76,572 KB
testcase_14 WA -
testcase_15 AC 626 ms
71,936 KB
testcase_16 AC 623 ms
76,456 KB
testcase_17 AC 426 ms
65,812 KB
testcase_18 AC 462 ms
69,712 KB
testcase_19 AC 491 ms
72,752 KB
testcase_20 AC 552 ms
73,092 KB
testcase_21 AC 531 ms
73,084 KB
testcase_22 AC 521 ms
70,648 KB
testcase_23 AC 712 ms
75,368 KB
testcase_24 AC 524 ms
70,792 KB
testcase_25 AC 458 ms
67,184 KB
testcase_26 AC 471 ms
66,964 KB
testcase_27 AC 487 ms
70,856 KB
testcase_28 AC 709 ms
72,324 KB
testcase_29 AC 602 ms
73,064 KB
testcase_30 AC 625 ms
72,120 KB
testcase_31 AC 515 ms
70,368 KB
testcase_32 AC 494 ms
70,560 KB
testcase_33 AC 369 ms
79,712 KB
testcase_34 AC 388 ms
71,860 KB
testcase_35 AC 395 ms
75,744 KB
testcase_36 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.Arrays;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int n = Integer.parseInt(br.readLine());
		String[] sa = br.readLine().split(" ");
		int[] a = new int[n];
		
		for (int i = 0; i < n; i++) {
			a[i] = Integer.parseInt(sa[i]);
		}
		br.close();

		Obj[] arr = new Obj[n];
		for (int i = 0; i < n; i++) {
			Obj o = new Obj();
			o.i = i + 1;
			o.a = a[i];
			arr[i] = o;
		}
		Arrays.sort(arr, (o1, o2) -> o1.a - o2.a);

		int mod = 998244353;
		BIT bit1 = new BIT(n + 1);
		BIT bit1c = new BIT(n + 1);
		BIT bit2 = new BIT(n + 1);
		BIT bit2c = new BIT(n + 1);
		long ans = 0;
		for (int i = 0; i < n; i++) {
			Obj o = arr[i];
			long v2 = bit2.sum(n) - bit2.sum(o.i);
			long c2 = bit2c.sum(n) - bit2c.sum(o.i);
			long val = o.a * c2 + v2;
			ans += val;
			ans %= mod;

			long v1 = bit1.sum(n) - bit1.sum(o.i);
			long c1 = bit1c.sum(n) - bit1c.sum(o.i);
			long p = o.a * c1 + v1;
			bit2.add(o.i, p % mod);
			bit2c.add(o.i, c1);

			bit1.add(o.i, o.a);
			bit1c.add(o.i, 1);
		}
		System.out.println(ans);
	}

	static class Obj {
		int i, a;
	}

	static class BIT {
		int n;
		long[] arr;

		public BIT(int n) {
			this.n = n;
			arr = new long[n + 1];
		}

		void add(int idx, long val) {
			for (int i = idx; i <= n; i += i & -i) {
				arr[i] += val;
			}
		}

		long sum(int idx) {
			long sum = 0;
			for (int i = idx; i > 0; i -= i & -i) {
				sum += arr[i];
			}
			return sum;
		}
	}
}
0