結果
問題 | No.696 square1001 and Permutation 5 |
ユーザー | しらっ亭 |
提出日時 | 2018-06-08 23:51:19 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,373 bytes |
コンパイル時間 | 3,895 ms |
コンパイル使用メモリ | 77,820 KB |
実行使用メモリ | 89,300 KB |
最終ジャッジ日時 | 2024-06-30 11:21:27 |
合計ジャッジ時間 | 26,649 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | AC | 140 ms
54,444 KB |
testcase_02 | AC | 150 ms
54,384 KB |
testcase_03 | AC | 191 ms
54,356 KB |
testcase_04 | AC | 228 ms
59,776 KB |
testcase_05 | AC | 281 ms
59,952 KB |
testcase_06 | AC | 466 ms
59,256 KB |
testcase_07 | AC | 667 ms
59,512 KB |
testcase_08 | AC | 1,237 ms
62,652 KB |
testcase_09 | AC | 3,393 ms
63,364 KB |
testcase_10 | TLE | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
ソースコード
import java.math.BigInteger; import java.util.Scanner; public class Sol { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int n = scanner.nextInt(); int[] A = new int[n]; for (int i = 0; i < n; i++) { A[i] = scanner.nextInt(); } BinaryIndexedTree ft = new BinaryIndexedTree(n); long[] factSum = new long[n]; factSum[1]++; for (int i = 0; i < n - 1; i++) { int a = A[i]; int cnt = a-1-ft.sum(a); int len = n - i; factSum[len-1] += cnt; ft.add(a, 1); } BigInteger ans = BigInteger.ZERO; BigInteger fact = BigInteger.ONE; for (int i = 1; i < n; i++) { fact = fact.multiply(BigInteger.valueOf(i)); ans = ans.add(fact.multiply(BigInteger.valueOf(factSum[i]))); } System.out.println(ans); } } class BinaryIndexedTree { private int n; private int[] val; public BinaryIndexedTree(int n) { this.n = n; val = new int[n]; } public void add(int i, int x) { for (; i < n; i |= i + 1) val[i] += x; } int sum(int i) { int s = 0; --i; if (i >= n) i = n - 1; for (; i >= 0; i = (i & (i + 1)) - 1) s += val[i]; return s; } }