結果

問題 No.345 最小チワワ問題
ユーザー convexineqconvexineq
提出日時 2021-02-01 17:57:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 384 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 81,976 KB
実行使用メモリ 54,292 KB
最終ジャッジ日時 2024-06-29 22:53:55
合計ジャッジ時間 2,243 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,748 KB
testcase_01 AC 38 ms
52,892 KB
testcase_02 AC 38 ms
52,216 KB
testcase_03 AC 34 ms
52,544 KB
testcase_04 AC 32 ms
53,156 KB
testcase_05 AC 32 ms
53,912 KB
testcase_06 AC 34 ms
53,816 KB
testcase_07 AC 35 ms
53,744 KB
testcase_08 AC 35 ms
52,012 KB
testcase_09 AC 36 ms
52,964 KB
testcase_10 AC 36 ms
52,640 KB
testcase_11 AC 36 ms
52,012 KB
testcase_12 AC 37 ms
52,404 KB
testcase_13 AC 36 ms
53,216 KB
testcase_14 AC 35 ms
52,216 KB
testcase_15 AC 35 ms
53,656 KB
testcase_16 AC 34 ms
52,208 KB
testcase_17 AC 33 ms
52,188 KB
testcase_18 AC 40 ms
52,564 KB
testcase_19 AC 36 ms
54,292 KB
testcase_20 AC 38 ms
52,692 KB
testcase_21 AC 37 ms
53,432 KB
testcase_22 AC 37 ms
52,552 KB
testcase_23 AC 35 ms
52,708 KB
testcase_24 AC 33 ms
52,484 KB
testcase_25 AC 32 ms
53,020 KB
testcase_26 AC 33 ms
53,028 KB
testcase_27 AC 33 ms
52,236 KB
testcase_28 AC 33 ms
53,564 KB
testcase_29 AC 33 ms
52,808 KB
testcase_30 AC 35 ms
53,832 KB
testcase_31 AC 34 ms
52,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
from bisect import bisect_left
C = []
W = []
for i,c in enumerate(s):
    if c=="c":
        C.append(-i)
    elif c=="w":
        W.append(i)
C = C[::-1]
ans = INF = 500
lc,lw = len(C),len(W)
for i in W:
    v = bisect_left(C,-i)
    if v == lc: continue
    w = bisect_left(W,i+1)
    if w == lw: continue
    ans = min(ans,W[w]+C[v]+1)

print(ans if ans != INF else -1)
0