結果

問題 No.696 square1001 and Permutation 5
ユーザー Min_25Min_25
提出日時 2018-06-08 23:06:15
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 768 ms / 10,000 ms
コード長 798 bytes
コンパイル時間 2,126 ms
コンパイル使用メモリ 76,800 KB
実行使用メモリ 106,600 KB
最終ジャッジ日時 2024-06-30 10:59:09
合計ジャッジ時間 6,694 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 758 ms
106,600 KB
testcase_01 AC 75 ms
75,392 KB
testcase_02 AC 79 ms
76,476 KB
testcase_03 AC 85 ms
77,184 KB
testcase_04 AC 88 ms
77,888 KB
testcase_05 AC 102 ms
77,996 KB
testcase_06 AC 115 ms
78,856 KB
testcase_07 AC 122 ms
78,720 KB
testcase_08 AC 159 ms
80,256 KB
testcase_09 AC 324 ms
87,436 KB
testcase_10 AC 768 ms
105,948 KB
testcase_11 AC 293 ms
91,488 KB
testcase_12 AC 74 ms
75,524 KB
testcase_13 AC 74 ms
75,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def permutation_rank(n, seq):
  def add(idx, v):
    while idx <= n:
      fenwick[idx] += v
      idx += idx & -idx
    return

  def read(idx):
    ret = 0
    while idx > 0:
      ret += fenwick[idx]
      idx -= idx & -idx
    return ret

  def rec(b, e):
    if e - b == 1:
      return vals[b], b + 1
    m = (b + e) // 2
    ls, lp = rec(b, m)
    rs, rp = rec(m, e)
    return rs * lp + ls, lp * rp

  fenwick = [0] * (n + 1)
  for i in range(2, n + 1):
    add(i, 1)

  vals = []
  ret = 0
  for i, c in enumerate(seq):
    vals += [read(c + 1)]
    add(c + 1, -1)
  vals = vals[::-1]
  ans = rec(0, n)[0]
  return ans + 1

def solve():
  import sys
  input = sys.stdin.readline
  N = int(input())
  A = [a - 1 for a in map(int, input().split())]
  print(permutation_rank(N, A))

solve()
0