結果
問題 | No.1311 Reverse Permutation Index |
ユーザー | shotoyoo |
提出日時 | 2020-12-08 00:20:57 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,041 bytes |
コンパイル時間 | 128 ms |
コンパイル使用メモリ | 82,132 KB |
実行使用メモリ | 848,688 KB |
最終ジャッジ日時 | 2024-09-17 14:11:29 |
合計ジャッジ時間 | 2,777 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 34 ms
52,224 KB |
testcase_01 | MLE | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
ソースコード
import sys input = lambda : sys.stdin.readline().rstrip() sys.setrecursionlimit(max(1000, 10**9)) write = lambda x: sys.stdout.write(x+"\n") n,s = map(int, input().split()) g = [1] v = 1 for i in range(1,n+2): v *= i g.append(v) def ps(n,v): """長さnの順列で、辞書順v番目 """ seen = [False]*n ans = [] for i in range(n): num = v//g[n-i-1] count = 0 for j in range(n): if seen[j]: continue if count==num: break if not seen[j]: count += 1 ans.append(j) seen[j] = True v = v%g[n-i-1] return ans def index(ps): """順列psの辞書順 """ n = len(ps) v = 0 seen = [False] * n for i in range(n): num = 0 for j in range(ps[i]): if not seen[j]: num += 1 v += num * g[n-i-1] seen[ps[i]] = True return v p = ps(s,n) pp = [None]*s for i,v in enumerate(p): pp[v] = i print(index(pp))