結果

問題 No.696 square1001 and Permutation 5
ユーザー 37zigen37zigen
提出日時 2018-06-09 04:21:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 2,227 ms / 10,000 ms
コード長 1,470 bytes
コンパイル時間 2,083 ms
コンパイル使用メモリ 74,708 KB
実行使用メモリ 80,348 KB
最終ジャッジ日時 2023-09-13 01:41:05
合計ジャッジ時間 15,326 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,216 ms
80,348 KB
testcase_01 AC 127 ms
56,000 KB
testcase_02 AC 136 ms
56,004 KB
testcase_03 AC 170 ms
56,120 KB
testcase_04 AC 214 ms
57,512 KB
testcase_05 AC 230 ms
59,784 KB
testcase_06 AC 333 ms
60,888 KB
testcase_07 AC 502 ms
59,788 KB
testcase_08 AC 666 ms
61,600 KB
testcase_09 AC 1,193 ms
69,380 KB
testcase_10 AC 2,227 ms
75,788 KB
testcase_11 AC 1,248 ms
73,096 KB
testcase_12 AC 121 ms
55,768 KB
testcase_13 AC 121 ms
55,792 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();
		}
		BIT bit = new BIT(n + 1);
		for (int i = 1; i <= n; ++i) {
			bit.add(i, 1);
		}

		coe = new long[n];
		for (int i = 0; i < n; ++i) {
			int v = bit.sum(1, p[i]);
			coe[n - 1 - i] = v;
			bit.add(p[i], -1);
		}
		System.out.println(dfs(0, n)[1].add(BigInteger.ONE));
	}

	// [l,r)
	BigInteger[] dfs(int l, int r) {
		if (r - l == 1) {
			return new BigInteger[] { BigInteger.valueOf(l == 0 ? 1 : l),
					BigInteger.valueOf(l).multiply(BigInteger.valueOf(coe[l])) };
		}
		BigInteger[] lb = dfs(l, (l + r) / 2);
		BigInteger[] rb = dfs((l + r) / 2, r);
		return new BigInteger[] { lb[0].multiply(rb[0]), lb[1].add(rb[1].multiply(lb[0])) };
	}

	long[] coe;

	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