結果
問題 |
No.696 square1001 and Permutation 5
|
ユーザー |
![]() |
提出日時 | 2025-06-12 20:46:53 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,141 bytes |
コンパイル時間 | 205 ms |
コンパイル使用メモリ | 81,792 KB |
実行使用メモリ | 851,620 KB |
最終ジャッジ日時 | 2025-06-12 20:47:16 |
合計ジャッジ時間 | 4,551 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | -- * 2 |
other | MLE * 1 -- * 11 |
ソースコード
class FenwickTree: def __init__(self, size): self.size = size self.tree = [0] * (size + 1) # 1-based indexing def update(self, index, delta): while index <= self.size: self.tree[index] += delta index += index & -index def query(self, index): res = 0 while index > 0: res += self.tree[index] index -= index & -index return res def main(): import sys input = sys.stdin.read data = input().split() n = int(data[0]) p = list(map(int, data[1:1+n])) # Precompute factorials max_n = n fact = [1] * (max_n + 1) for i in range(1, max_n + 1): fact[i] = fact[i-1] * i ft = FenwickTree(n) result = 0 for i in range(n): current = p[i] # Compute the number of elements less than current that are still available k = ft.query(current - 1) remaining = current - 1 - k rem = n - i - 1 if rem >= 0: result += remaining * fact[rem] ft.update(current, 1) print(result + 1) if __name__ == "__main__": main()