結果

問題 No.566 だいたい完全二分木
ユーザー titiatitia
提出日時 2024-05-02 01:58:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 107 ms / 2,000 ms
コード長 923 bytes
コンパイル時間 466 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 71,552 KB
最終ジャッジ日時 2024-05-02 01:58:30
合計ジャッジ時間 2,068 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
53,632 KB
testcase_01 AC 49 ms
53,504 KB
testcase_02 AC 51 ms
53,760 KB
testcase_03 AC 53 ms
53,888 KB
testcase_04 AC 51 ms
54,016 KB
testcase_05 AC 52 ms
54,016 KB
testcase_06 AC 59 ms
60,672 KB
testcase_07 AC 68 ms
61,440 KB
testcase_08 AC 68 ms
65,152 KB
testcase_09 AC 107 ms
68,352 KB
testcase_10 AC 83 ms
71,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

from random import shuffle

K=int(input())

LIST=list(range(1,2**K))
shuffle(LIST)

def height(LIST):
    H=[0]*(len(LIST)+1)
    LEFT=[-1]*(len(LIST)+1)
    RIGHT=[-1]*(len(LIST)+1)

    for i in range(1,len(LIST)):
        now=0
        h=1
        while True:
            if LIST[i]<LIST[now]:
                if LEFT[now]==-1:
                    LEFT[now]=i
                    H[i]=h
                    break
                else:
                    h+=1
                    now=LEFT[now]
            else:
                if RIGHT[now]==-1:
                    RIGHT[now]=i
                    H[i]=h
                    break
                else:
                    h+=1
                    now=RIGHT[now]

    return max(H)

while True:
    shuffle(LIST)

    if K<=height(LIST)<=3*K:
        print(*LIST)
        break
                
                    
            
0