結果

問題 No.2067 ±2^k operations
ユーザー とりゐとりゐ
提出日時 2022-08-29 00:33:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 886 ms / 2,000 ms
コード長 572 bytes
コンパイル時間 428 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 246,392 KB
最終ジャッジ日時 2024-10-15 20:15:07
合計ジャッジ時間 13,224 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 304 ms
89,860 KB
testcase_02 AC 305 ms
90,240 KB
testcase_03 AC 403 ms
90,928 KB
testcase_04 AC 388 ms
89,516 KB
testcase_05 AC 366 ms
89,116 KB
testcase_06 AC 218 ms
78,464 KB
testcase_07 AC 886 ms
242,060 KB
testcase_08 AC 801 ms
240,412 KB
testcase_09 AC 752 ms
243,840 KB
testcase_10 AC 872 ms
246,392 KB
testcase_11 AC 847 ms
243,224 KB
testcase_12 AC 820 ms
240,488 KB
testcase_13 AC 802 ms
241,252 KB
testcase_14 AC 802 ms
240,588 KB
testcase_15 AC 851 ms
240,896 KB
testcase_16 AC 845 ms
240,760 KB
testcase_17 AC 289 ms
80,896 KB
testcase_18 AC 221 ms
77,312 KB
testcase_19 AC 104 ms
76,032 KB
testcase_20 AC 116 ms
76,288 KB
testcase_21 AC 126 ms
76,160 KB
testcase_22 AC 145 ms
76,416 KB
testcase_23 AC 130 ms
76,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

memo={}
def f(n):
  if n<=1:
    return n
  if n in memo:
    return memo[n]
  if n%2==0:
    res=f(n//2)
    memo[n]=res
    return res
  else:
    res=1+min(f(n//2),f(n//2+1))
    memo[n]=res
    return res

def calc(n):
  if n==1:
    return 0,1,0,0
  if n%2==0:
    res,a,b,c=calc(n//2)
    res2=2*res+a+b
    a2=a+b
    b2=a+c
    c2=b+c
    return res2,a2,b2,c2
  
  res,a,b,c=calc(n-1)
  p=f(n-1)
  q=f(n)
  res+=p

  if p<q:
    a+=1
  if p==q:
    b+=1
  if p>q:
    c+=1
  
  return res,a,b,c

for _ in range(int(input())):
  n=int(input())
  print(calc(n+1)[0])
0