結果

問題 No.873 バイナリ、ヤバいなり!w
ユーザー tktk_snsntktk_snsn
提出日時 2021-02-07 21:34:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 852 ms / 2,000 ms
コード長 1,209 bytes
コンパイル時間 583 ms
コンパイル使用メモリ 81,716 KB
実行使用メモリ 81,280 KB
最終ジャッジ日時 2024-06-06 02:54:25
合計ジャッジ時間 34,887 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 842 ms
81,024 KB
testcase_01 AC 835 ms
80,984 KB
testcase_02 AC 834 ms
80,896 KB
testcase_03 AC 838 ms
80,740 KB
testcase_04 AC 838 ms
80,756 KB
testcase_05 AC 847 ms
80,736 KB
testcase_06 AC 845 ms
81,280 KB
testcase_07 AC 840 ms
80,844 KB
testcase_08 AC 846 ms
80,800 KB
testcase_09 AC 828 ms
80,868 KB
testcase_10 AC 832 ms
80,896 KB
testcase_11 AC 835 ms
80,760 KB
testcase_12 AC 829 ms
80,920 KB
testcase_13 AC 840 ms
81,040 KB
testcase_14 AC 839 ms
80,828 KB
testcase_15 AC 841 ms
80,896 KB
testcase_16 AC 845 ms
80,868 KB
testcase_17 AC 843 ms
80,900 KB
testcase_18 AC 833 ms
80,928 KB
testcase_19 AC 848 ms
80,836 KB
testcase_20 AC 827 ms
80,908 KB
testcase_21 AC 832 ms
80,896 KB
testcase_22 AC 843 ms
80,896 KB
testcase_23 AC 848 ms
80,960 KB
testcase_24 AC 841 ms
80,940 KB
testcase_25 AC 852 ms
80,896 KB
testcase_26 AC 841 ms
80,956 KB
testcase_27 AC 843 ms
80,860 KB
testcase_28 AC 838 ms
81,152 KB
testcase_29 AC 841 ms
80,896 KB
testcase_30 AC 844 ms
81,048 KB
testcase_31 AC 845 ms
80,912 KB
testcase_32 AC 850 ms
80,768 KB
testcase_33 AC 846 ms
81,008 KB
testcase_34 AC 837 ms
80,856 KB
testcase_35 AC 840 ms
80,840 KB
testcase_36 AC 833 ms
80,840 KB
testcase_37 AC 835 ms
81,024 KB
testcase_38 AC 822 ms
80,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
U = 3 * 10 ** 5
Usq = int(U ** 0.5 + 0.5)

dp = [U] * (U + 1)
prev = [-1] * (U + 1)  # p*pマス戻る、-1ならおわり
for i in range(Usq):
    prev[i*i] = i
    dp[i*i] = i

od = [(1, 1)]
ev = []
for i in range(2, U + 1):
    for j, s in od:
        if dp[i] > dp[i - s] + j:
            dp[i] = dp[i - s] + j
            prev[i] = j
    for j, s in ev[::-1]:
        if dp[i] > dp[i - s] + j:
            dp[i] = dp[i - s] + j
            prev[i] = j
    if dp[i] ** 2 == i:
        if i % 2 == 1:
            od.append((dp[i], i))
        else:
            ev.append((dp[i], i))


N = int(input())
seq = []
i = N
while i:
    p = prev[i]
    seq.append(p)
    i -= p * p

seq.sort()
odd = []
even = []
for s in seq:
    if s % 2 == 0:
        even.append(s)
    else:
        odd.append(s)

ans = []
for s in odd:
    bit = "".join(["0" if i % 2 == 0 else "1" for i in range(s)])
    ans.append(bit)

even = deque(even)
rev = 0
while even:
    if rev:
        s = even.popleft()
    else:
        s = even.pop()
    bit = "".join(["0" if i % 2 == 0 else "1" for i in range(s)])
    if rev:
        bit = bit[::-1]
    ans.append(bit)
    rev = 1 - rev

print("".join(ans))
0