結果
問題 | No.696 square1001 and Permutation 5 |
ユーザー | しらっ亭 |
提出日時 | 2018-06-09 00:11:11 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,484 bytes |
コンパイル時間 | 3,439 ms |
コンパイル使用メモリ | 78,424 KB |
実行使用メモリ | 76,216 KB |
最終ジャッジ日時 | 2024-06-30 11:35:05 |
合計ジャッジ時間 | 26,048 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | AC | 136 ms
54,168 KB |
testcase_02 | AC | 159 ms
54,216 KB |
testcase_03 | AC | 195 ms
54,436 KB |
testcase_04 | AC | 220 ms
57,288 KB |
testcase_05 | AC | 271 ms
57,280 KB |
testcase_06 | AC | 454 ms
58,800 KB |
testcase_07 | AC | 688 ms
59,516 KB |
testcase_08 | AC | 1,188 ms
62,524 KB |
testcase_09 | AC | 3,546 ms
72,500 KB |
testcase_10 | TLE | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
ソースコード
import java.math.BigInteger; import java.util.Arrays; 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]; 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); } // System.out.println(Arrays.toString(factSum)); BigInteger ans = BigInteger.ONE; BigInteger fact = BigInteger.ONE; for (int i = 1; i < n; i++) { fact = fact.multiply(BigInteger.valueOf(i)); if (factSum[i] > 0) { 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; } }