結果

問題 No.1192 半部分列
ユーザー definedefine
提出日時 2020-08-05 14:57:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,064 ms / 2,000 ms
コード長 1,033 bytes
コンパイル時間 777 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 190,524 KB
最終ジャッジ日時 2024-09-17 00:16:37
合計ジャッジ時間 15,130 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 401 ms
161,440 KB
testcase_01 AC 411 ms
161,700 KB
testcase_02 AC 400 ms
161,556 KB
testcase_03 AC 407 ms
161,464 KB
testcase_04 AC 408 ms
161,560 KB
testcase_05 AC 409 ms
161,564 KB
testcase_06 AC 1,064 ms
190,524 KB
testcase_07 AC 502 ms
163,672 KB
testcase_08 AC 499 ms
163,424 KB
testcase_09 AC 493 ms
163,156 KB
testcase_10 AC 413 ms
161,560 KB
testcase_11 AC 420 ms
161,444 KB
testcase_12 AC 506 ms
163,264 KB
testcase_13 AC 467 ms
163,004 KB
testcase_14 AC 483 ms
163,364 KB
testcase_15 AC 483 ms
163,268 KB
testcase_16 AC 462 ms
162,236 KB
testcase_17 AC 479 ms
163,396 KB
testcase_18 AC 416 ms
161,948 KB
testcase_19 AC 428 ms
162,216 KB
testcase_20 AC 408 ms
161,816 KB
testcase_21 AC 453 ms
161,988 KB
testcase_22 AC 414 ms
161,948 KB
testcase_23 AC 497 ms
163,288 KB
testcase_24 AC 422 ms
162,096 KB
testcase_25 AC 444 ms
162,240 KB
testcase_26 AC 435 ms
161,852 KB
testcase_27 AC 451 ms
161,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import copy
S=input()
T=input()
nexS=[[0] * 26 for i in range(100005)]
nexT=copy.deepcopy(nexS)

for i in range(26):
    nexS[len(S)][i]=len(S)
    nexT[len(T)][i]=len(T)
for i in range(len(S)-1,-1,-1):
    for j in range(26):
        nexS[i][j]=nexS[i+1][j]
    nexS[i][ord(S[i])-0x61]=i
for i in range(len(T)-1,-1,-1):
    for j in range(26):
        nexT[i][j]=nexT[i+1][j]
    nexT[i][ord(T[i])-0x61]=i

inc=[0 for i in range(100005)]
now=len(T)
inc[len(S)]=now
for i in range(len(S)-1,-1,-1):
    now=max(-1,now-1)
    while now>=0 and T[now]!=S[i]:
        now-=1
    inc[i]=now
if inc[0]!=-1:
    print(-1)
    exit(0)

Ans=""
curS,curT=0,0

while curS<len(S):
    for i in range(26):
        if nexS[curS][i]==len(S):
            continue
        if nexT[curT][i]==len(T):
            Ans+=(chr)(0x61+i)
            print(Ans)
            exit(0)
        if inc[nexS[curS][i]+1]>=nexT[curT][i]+1:
            continue
        curS=nexS[curS][i]+1
        curT=nexT[curT][i]+1
        Ans+=(chr)(0x61+i)
        break
        
0