結果

問題 No.1300 Sum of Inversions
ユーザー ks2mks2m
提出日時 2020-11-27 23:07:39
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,683 bytes
コンパイル時間 2,897 ms
コンパイル使用メモリ 87,120 KB
実行使用メモリ 79,676 KB
最終ジャッジ日時 2024-07-26 19:29:03
合計ジャッジ時間 26,591 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
50,700 KB
testcase_01 AC 63 ms
50,528 KB
testcase_02 AC 63 ms
50,524 KB
testcase_03 AC 695 ms
77,284 KB
testcase_04 AC 689 ms
76,732 KB
testcase_05 AC 564 ms
69,968 KB
testcase_06 AC 690 ms
75,728 KB
testcase_07 AC 711 ms
76,668 KB
testcase_08 AC 745 ms
71,984 KB
testcase_09 AC 718 ms
72,436 KB
testcase_10 AC 509 ms
66,164 KB
testcase_11 AC 503 ms
66,508 KB
testcase_12 AC 740 ms
77,400 KB
testcase_13 AC 683 ms
76,716 KB
testcase_14 WA -
testcase_15 AC 717 ms
72,244 KB
testcase_16 AC 697 ms
76,452 KB
testcase_17 AC 492 ms
65,948 KB
testcase_18 AC 548 ms
70,700 KB
testcase_19 AC 573 ms
72,920 KB
testcase_20 AC 647 ms
73,248 KB
testcase_21 AC 695 ms
73,296 KB
testcase_22 AC 621 ms
70,288 KB
testcase_23 AC 778 ms
75,388 KB
testcase_24 AC 575 ms
70,292 KB
testcase_25 AC 537 ms
67,256 KB
testcase_26 AC 525 ms
67,596 KB
testcase_27 AC 590 ms
71,200 KB
testcase_28 AC 782 ms
72,500 KB
testcase_29 AC 658 ms
73,364 KB
testcase_30 AC 705 ms
72,112 KB
testcase_31 AC 579 ms
70,620 KB
testcase_32 AC 584 ms
70,748 KB
testcase_33 AC 403 ms
79,676 KB
testcase_34 AC 430 ms
71,728 KB
testcase_35 AC 437 ms
75,836 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) -> {
			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);
			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