結果

問題 No.1300 Sum of Inversions
ユーザー ks2mks2m
提出日時 2020-11-27 23:11:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 870 ms / 2,000 ms
コード長 1,747 bytes
コンパイル時間 3,238 ms
コンパイル使用メモリ 80,388 KB
実行使用メモリ 77,420 KB
最終ジャッジ日時 2024-07-26 19:31:27
合計ジャッジ時間 27,363 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
50,528 KB
testcase_01 AC 67 ms
50,444 KB
testcase_02 AC 65 ms
50,604 KB
testcase_03 AC 748 ms
77,420 KB
testcase_04 AC 771 ms
76,964 KB
testcase_05 AC 634 ms
60,212 KB
testcase_06 AC 776 ms
65,484 KB
testcase_07 AC 752 ms
66,896 KB
testcase_08 AC 784 ms
62,352 KB
testcase_09 AC 729 ms
62,120 KB
testcase_10 AC 536 ms
56,252 KB
testcase_11 AC 540 ms
56,280 KB
testcase_12 AC 679 ms
67,012 KB
testcase_13 AC 734 ms
67,128 KB
testcase_14 AC 870 ms
62,864 KB
testcase_15 AC 750 ms
61,896 KB
testcase_16 AC 703 ms
67,440 KB
testcase_17 AC 536 ms
56,468 KB
testcase_18 AC 586 ms
59,972 KB
testcase_19 AC 608 ms
61,752 KB
testcase_20 AC 640 ms
62,008 KB
testcase_21 AC 646 ms
61,880 KB
testcase_22 AC 623 ms
60,228 KB
testcase_23 AC 735 ms
65,604 KB
testcase_24 AC 647 ms
60,900 KB
testcase_25 AC 570 ms
57,344 KB
testcase_26 AC 589 ms
57,872 KB
testcase_27 AC 574 ms
60,876 KB
testcase_28 AC 774 ms
62,552 KB
testcase_29 AC 666 ms
61,548 KB
testcase_30 AC 740 ms
62,156 KB
testcase_31 AC 604 ms
60,732 KB
testcase_32 AC 594 ms
60,788 KB
testcase_33 AC 415 ms
69,868 KB
testcase_34 AC 460 ms
61,848 KB
testcase_35 AC 473 ms
66,696 KB
testcase_36 AC 470 ms
62,008 KB
権限があれば一括ダウンロードができます

ソースコード

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) -> {
			if (o1.a != o2.a) {
				return o1.a - o2.a;
			} else {
				return o1.i - o2.i;
			}
		});

		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);
			c2 %= mod;
			long val = o.a * c2 % mod + v2 % mod;
			ans += val % mod;
			ans %= mod;

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

			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