結果

問題 No.696 square1001 and Permutation 5
ユーザー 37zigen37zigen
提出日時 2018-06-09 00:09:39
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,655 bytes
コンパイル時間 4,143 ms
コンパイル使用メモリ 73,900 KB
実行使用メモリ 79,164 KB
最終ジャッジ日時 2023-09-13 00:41:44
合計ジャッジ時間 31,782 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 132 ms
56,048 KB
testcase_02 AC 140 ms
55,968 KB
testcase_03 AC 174 ms
56,256 KB
testcase_04 AC 214 ms
61,440 KB
testcase_05 AC 246 ms
59,604 KB
testcase_06 AC 389 ms
60,348 KB
testcase_07 AC 565 ms
61,168 KB
testcase_08 AC 871 ms
61,416 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 2,209 ms
65,336 KB
testcase_12 AC 121 ms
55,936 KB
testcase_13 AC 122 ms
56,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigInteger;
import java.util.Arrays;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		new Main().run();
	}

	void run() {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[] p = new int[n];
		for (int i = 0; i < n; ++i) {
			p[i] = sc.nextInt();
		}
		BigInteger fac = BigInteger.valueOf(1);
		BIT bit = new BIT(n + 1);
		for (int i = 1; i <= n; ++i) {
			bit.add(i, 1);
		}

		int[] coe = new int[n];
		BigInteger ans = BigInteger.ZERO;
		for (int i = 0; i < n; ++i) {
			int v = bit.sum(1, p[i]);
			coe[i] = v;
			// fac = fac.divide(BigInteger.valueOf(n - i));
			// ans = ans.add(fac.multiply(BigInteger.valueOf(v)));
			bit.add(p[i], -1);
		}
		boolean f = false;
		if ((n - 1) % 2 == 0) {
			ans = ans.add(fac.multiply(BigInteger.valueOf(coe[n - 1])));
			fac = fac.multiply(BigInteger.valueOf(1));
			f = true;
		}
		for (int i = n - 1 - (f ? 1 : 0); i >= 0; i -= 2) {
			ans = ans.add(fac.multiply(BigInteger.valueOf(coe[i] + coe[i - 1] * (n - i))));
			fac = fac.multiply(BigInteger.valueOf((n - i) * (n - (i - 1))));
		}
		ans = ans.add(BigInteger.ONE);
		System.out.println(ans);

	}

	class BIT {
		int n;
		int[] a;

		public BIT(int n_) {
			n = n_;
			a = new int[n + 1];
		}

		void add(int k, int add) {
			++k;
			while (k < a.length) {
				a[k] += add;
				k += k & -k;
			}
		}

		int sum(int k) {
			++k;
			int ret = 0;
			while (k > 0) {
				ret += a[k];
				k -= k & -k;
			}
			return ret;
		}

		int sum(int a, int b) {
			return sum(b - 1) - sum(a - 1);
		}
	}

	void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}
}
0