結果

問題 No.1609 String Division Machine
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-07-14 15:21:02
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,467 bytes
コンパイル時間 302 ms
コンパイル使用メモリ 82,500 KB
実行使用メモリ 83,632 KB
最終ジャッジ日時 2024-07-06 07:59:01
合計ジャッジ時間 6,376 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
60,112 KB
testcase_01 AC 33 ms
52,324 KB
testcase_02 AC 32 ms
53,064 KB
testcase_03 AC 32 ms
53,148 KB
testcase_04 AC 32 ms
53,216 KB
testcase_05 AC 33 ms
52,736 KB
testcase_06 AC 32 ms
52,140 KB
testcase_07 AC 35 ms
58,784 KB
testcase_08 AC 32 ms
52,636 KB
testcase_09 AC 32 ms
54,080 KB
testcase_10 AC 36 ms
53,212 KB
testcase_11 AC 32 ms
53,576 KB
testcase_12 AC 35 ms
53,520 KB
testcase_13 AC 36 ms
59,264 KB
testcase_14 AC 38 ms
60,476 KB
testcase_15 AC 37 ms
58,584 KB
testcase_16 AC 36 ms
59,764 KB
testcase_17 AC 38 ms
58,304 KB
testcase_18 AC 38 ms
58,104 KB
testcase_19 AC 41 ms
61,000 KB
testcase_20 AC 41 ms
59,152 KB
testcase_21 AC 42 ms
58,436 KB
testcase_22 AC 40 ms
59,340 KB
testcase_23 AC 46 ms
63,280 KB
testcase_24 AC 45 ms
64,204 KB
testcase_25 AC 48 ms
64,492 KB
testcase_26 AC 48 ms
64,000 KB
testcase_27 AC 45 ms
63,752 KB
testcase_28 AC 45 ms
64,020 KB
testcase_29 AC 46 ms
63,440 KB
testcase_30 AC 46 ms
63,716 KB
testcase_31 AC 45 ms
64,468 KB
testcase_32 AC 49 ms
65,292 KB
testcase_33 AC 157 ms
80,824 KB
testcase_34 AC 159 ms
81,848 KB
testcase_35 AC 160 ms
81,216 KB
testcase_36 AC 211 ms
80,960 KB
testcase_37 AC 148 ms
81,728 KB
testcase_38 TLE -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

誤解法想定 TLE
?を置き換える際にO(|S|^2)

"""

import bisect
import sys


alp = "abcdefghijklmnopqrstuvwxyz?"
cd = {} #文字→数字にする辞書型
for i in range(-1,26):
    cd[alp[i]] = i

#N = int(input())
S = list(input())

#制約チェック
#assert N == len(S)
for i in S:
    assert i in cd
N = len(S)
assert 1 <= N <= 10**5

#全て?の場合を処理する
allq = True #全て?かどうかのフラグ

for i in S:
    if i != "?":
        allq = False
        break

if allq:
    print ("a"*N)
    sys.exit()


#文字列を貪欲に分割する。
#後ろに、自分より辞書順で大きいのが無ければ取る

cnt = 1
splis = [None] * N #何回目で取り除かれるか?

while True:

    flag = False #1つでも今回取るのがあった場合はTrueにする
    nmax = -1 #今回取った最大の文字の番号

    for i in range(len(S)-1,-1,-1):
        if S[i] != "?" and splis[i] == None and cd[S[i]] >= nmax:
            splis[i] = cnt
            nmax = cd[S[i]]
            flag = True

    if not flag:
        break
    cnt += 1

spmax = cnt - 1 #splisの最大値

#print (splis,spmax,file=sys.stderr)

#lastc = "a" #splis[i]がspmaxと同じ文字で、最後に見た文字

for i in range(len(S)):

    if S[i] == "?":
        for j in range(i+1,len(S),1):
            if splis[j] == spmax:
                S[i] = S[j]
                break
        else:
            S[i] = "a"

print ("".join(S))
0