結果
問題 | No.1311 Reverse Permutation Index |
ユーザー | tenten |
提出日時 | 2024-07-23 08:51:23 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 56 ms / 1,500 ms |
コード長 | 2,501 bytes |
コンパイル時間 | 2,171 ms |
コンパイル使用メモリ | 78,136 KB |
実行使用メモリ | 50,424 KB |
最終ジャッジ日時 | 2024-07-23 08:51:29 |
合計ジャッジ時間 | 3,130 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 53 ms
50,384 KB |
testcase_01 | AC | 52 ms
50,148 KB |
testcase_02 | AC | 53 ms
50,360 KB |
testcase_03 | AC | 54 ms
50,364 KB |
testcase_04 | AC | 55 ms
50,424 KB |
testcase_05 | AC | 53 ms
50,284 KB |
testcase_06 | AC | 54 ms
50,160 KB |
testcase_07 | AC | 56 ms
50,156 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 n = sc.nextLong(); int size = sc.nextInt(); facts = new long[size + 1]; facts[0] = 1; for (int i = 1; i <= size; i++) { facts[i] = facts[i - 1] * i; } int[] current = getArray(n, size); int[] next = new int[size]; for (int i = 0; i < size; i++) { next[current[i]] = i; } System.out.println(getIdx(next)); } static int[] getArray(long idx, int size) { boolean[] used = new boolean[size]; int[] ans = new int[size]; for (int i = 0; i < size; i++) { for (int j = 0; j < size; j++) { if (used[j]) { continue; } if (idx >= facts[size - i - 1]) { idx -= facts[size - i - 1]; } else { ans[i] = j; used[j] = true; break; } } } return ans; } static long getIdx(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[i]; j++) { if (!used[j]) { ans += facts[arr.length - i - 1]; } } used[arr[i]] = true; } 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(); } } }