結果

問題 No.873 バイナリ、ヤバいなり!w
ユーザー tktk_snsntktk_snsn
提出日時 2021-02-07 21:25:37
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,188 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 80,768 KB
最終ジャッジ日時 2024-07-04 14:38:59
合計ジャッジ時間 26,725 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 630 ms
80,384 KB
testcase_01 AC 646 ms
80,588 KB
testcase_02 AC 642 ms
80,512 KB
testcase_03 AC 648 ms
80,256 KB
testcase_04 AC 644 ms
80,768 KB
testcase_05 AC 640 ms
80,512 KB
testcase_06 AC 638 ms
80,768 KB
testcase_07 AC 634 ms
80,384 KB
testcase_08 AC 630 ms
80,640 KB
testcase_09 AC 628 ms
80,640 KB
testcase_10 AC 637 ms
80,512 KB
testcase_11 AC 633 ms
80,640 KB
testcase_12 AC 643 ms
80,640 KB
testcase_13 AC 638 ms
80,512 KB
testcase_14 AC 644 ms
80,640 KB
testcase_15 AC 642 ms
80,768 KB
testcase_16 AC 633 ms
80,512 KB
testcase_17 AC 642 ms
80,256 KB
testcase_18 AC 634 ms
80,768 KB
testcase_19 WA -
testcase_20 AC 638 ms
80,640 KB
testcase_21 AC 633 ms
80,640 KB
testcase_22 AC 625 ms
80,768 KB
testcase_23 AC 615 ms
80,768 KB
testcase_24 AC 627 ms
80,768 KB
testcase_25 AC 634 ms
80,768 KB
testcase_26 AC 634 ms
80,640 KB
testcase_27 AC 631 ms
80,768 KB
testcase_28 AC 631 ms
80,384 KB
testcase_29 AC 629 ms
80,512 KB
testcase_30 AC 630 ms
80,768 KB
testcase_31 AC 632 ms
80,640 KB
testcase_32 AC 631 ms
80,512 KB
testcase_33 AC 638 ms
80,768 KB
testcase_34 AC 652 ms
80,512 KB
testcase_35 AC 632 ms
80,768 KB
testcase_36 AC 628 ms
80,512 KB
testcase_37 WA -
testcase_38 AC 638 ms
80,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
U = 3 * 10 ** 5
Usq = int(U ** 0.5 + 0.5)
sq = [(i, i * i) for i in range(1, Usq)]
od = sq[0::2]
ev = sq[1::2]

dp = [U] * (U + 1)
prev = [-1] * (U + 1)  # p*pマス戻る、-1ならおわり
for i, s in sq:
    prev[s] = i
    dp[s] = i
    
for i in range(1, U + 1):
    for j, s in ev:
        if s > i:
            break
        if dp[i] >= dp[i - s] + j:
            dp[i] = dp[i - s] + j
            prev[i] = j
    for j, s in od:
        if s > i:
            break
        if dp[i] > dp[i - s] + j:
            dp[i] = dp[i - s] + j
            prev[i] = j

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