結果

問題 No.696 square1001 and Permutation 5
コンテスト
ユーザー 37zigen
提出日時 2018-06-08 23:46:38
言語 Java
(openjdk 25.0.2)
コンパイル:
javac -encoding UTF8 _filename_
実行:
java -ea -Xmx700m -Xss256M -DONLINE_JUDGE=true _class_
結果
AC  
実行時間 9,659 ms / 10,000 ms
コード長 1,421 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 3,382 ms
コンパイル使用メモリ 83,532 KB
実行使用メモリ 94,116 KB
最終ジャッジ日時 2026-03-20 10:17:08
合計ジャッジ時間 38,202 ms
ジャッジサーバーID
(参考情報)
judge2_0 / judge1_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 12
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

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);
		}
		for (int i = n - 1; i >= 0; --i) {
			ans = ans.add(fac.multiply(BigInteger.valueOf(coe[i])));
			fac = fac.multiply(BigInteger.valueOf(n-i));
		}
		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