結果
問題 | No.1311 Reverse Permutation Index |
ユーザー | tenten |
提出日時 | 2024-03-13 15:16:35 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 51 ms / 1,500 ms |
コード長 | 2,633 bytes |
コンパイル時間 | 4,509 ms |
コンパイル使用メモリ | 77,932 KB |
実行使用メモリ | 50,456 KB |
最終ジャッジ日時 | 2024-09-29 22:53:04 |
合計ジャッジ時間 | 4,387 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 49 ms
50,364 KB |
testcase_01 | AC | 49 ms
49,916 KB |
testcase_02 | AC | 47 ms
50,456 KB |
testcase_03 | AC | 47 ms
50,208 KB |
testcase_04 | AC | 47 ms
50,120 KB |
testcase_05 | AC | 48 ms
50,408 KB |
testcase_06 | AC | 49 ms
49,952 KB |
testcase_07 | AC | 51 ms
50,132 KB |
ソースコード
import java.io.*; import java.util.*; import java.util.function.*; import java.util.stream.*; public class Main { static long[] facts; public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); long x = sc.nextLong(); int n = sc.nextInt(); facts = new long[n]; facts[0] = 1; for (int i = 1; i < n; i++) { facts[i] = facts[i - 1] * i; } System.out.println(getCount(getReverse(getArray(x, n)))); } static int[] getArray(long value, int size) { int[] ans = new int[size]; boolean[] used = new boolean[size]; for (int i = 0; i < size; i++) { for (int j = 0; j < size; j++) { if (used[j]) { continue; } if (value < facts[size - i - 1]) { used[j] = true; ans[i] = j; break; } value -= facts[size - i - 1]; } } return ans; } static int[] getReverse(int[] arr) { int[] ans = new int[arr.length]; for (int i = 0; i < arr.length; i++) { ans[arr[i]] = i; } return ans; } static long getCount(int[] arr) { long ans = 0; boolean[] used = new boolean[arr.length]; for (int i = 0; i < arr.length; i++) { for (int j = 0; j < arr.length; j++) { if (used[j]) { continue; } if (arr[i] == j) { used[j] = true; break; } ans += facts[arr.length - i - 1]; } } return ans; } } class Scanner { BufferedReader br; StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); public Scanner() { try { br = new BufferedReader(new InputStreamReader(System.in)); } catch (Exception e) { } } public int nextInt() { return Integer.parseInt(next()); } public long nextLong() { return Long.parseLong(next()); } public double nextDouble() { return Double.parseDouble(next()); } public String next() { try { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } } catch (Exception e) { e.printStackTrace(); } finally { return st.nextToken(); } } }