結果

問題 No.696 square1001 and Permutation 5
ユーザー 37zigen37zigen
提出日時 2018-06-09 04:21:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 2,544 ms / 10,000 ms
コード長 1,470 bytes
コンパイル時間 2,262 ms
コンパイル使用メモリ 78,128 KB
実行使用メモリ 78,004 KB
最終ジャッジ日時 2024-06-30 12:24:36
合計ジャッジ時間 16,545 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,469 ms
78,004 KB
testcase_01 AC 150 ms
54,160 KB
testcase_02 AC 168 ms
54,036 KB
testcase_03 AC 180 ms
54,428 KB
testcase_04 AC 222 ms
56,876 KB
testcase_05 AC 259 ms
58,224 KB
testcase_06 AC 355 ms
59,172 KB
testcase_07 AC 501 ms
59,636 KB
testcase_08 AC 750 ms
60,176 KB
testcase_09 AC 1,423 ms
70,808 KB
testcase_10 AC 2,544 ms
78,000 KB
testcase_11 AC 1,360 ms
72,104 KB
testcase_12 AC 138 ms
54,128 KB
testcase_13 AC 138 ms
54,084 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