結果

問題 No.696 square1001 and Permutation 5
ユーザー 37zigen37zigen
提出日時 2018-06-08 23:39:52
言語 Java21
(openjdk 21)
結果
MLE  
実行時間 -
コード長 1,351 bytes
コンパイル時間 2,164 ms
コンパイル使用メモリ 79,444 KB
実行使用メモリ 759,156 KB
最終ジャッジ日時 2023-09-13 00:26:52
合計ジャッジ時間 16,622 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 AC 129 ms
56,100 KB
testcase_02 AC 137 ms
56,328 KB
testcase_03 AC 185 ms
58,484 KB
testcase_04 AC 213 ms
59,624 KB
testcase_05 AC 264 ms
62,992 KB
testcase_06 AC 487 ms
80,480 KB
testcase_07 AC 774 ms
158,156 KB
testcase_08 MLE -
testcase_09 MLE -
testcase_10 MLE -
testcase_11 MLE -
testcase_12 AC 116 ms
56,184 KB
testcase_13 AC 117 ms
56,476 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 = new BigInteger[n + 1];
		fac[0] = BigInteger.valueOf(1);
		fac[1] = BigInteger.valueOf(1);
		for (int i = 2; i < fac.length; ++i)
			fac[i] = fac[i - 1].multiply(BigInteger.valueOf(i));
		BIT bit = new BIT(n + 1);
		for (int i = 1; i <= n; ++i) {
			bit.add(i, 1);
		}
		BigInteger ans = BigInteger.ZERO;
		for (int i = 0; i < n; ++i) {
			int v = bit.sum(1, p[i]);
			ans = ans.add(fac[n - 1 - i].multiply(BigInteger.valueOf(v)));
			bit.add(p[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