結果

問題 No.2553 Holidays
ユーザー Seed57_cashSeed57_cash
提出日時 2023-11-21 19:35:51
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 2,285 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 81,700 KB
実行使用メモリ 77,832 KB
最終ジャッジ日時 2023-11-25 12:30:46
合計ジャッジ時間 4,420 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 61 ms
72,476 KB
testcase_02 AC 62 ms
72,476 KB
testcase_03 AC 67 ms
74,576 KB
testcase_04 WA -
testcase_05 AC 64 ms
72,512 KB
testcase_06 WA -
testcase_07 AC 61 ms
72,512 KB
testcase_08 AC 66 ms
74,584 KB
testcase_09 AC 60 ms
70,416 KB
testcase_10 AC 79 ms
77,832 KB
testcase_11 AC 78 ms
77,704 KB
testcase_12 WA -
testcase_13 AC 78 ms
77,816 KB
testcase_14 AC 78 ms
77,816 KB
testcase_15 AC 67 ms
72,504 KB
testcase_16 AC 59 ms
70,420 KB
testcase_17 AC 65 ms
72,504 KB
testcase_18 AC 65 ms
72,504 KB
testcase_19 AC 58 ms
70,420 KB
testcase_20 AC 66 ms
72,504 KB
testcase_21 AC 65 ms
72,504 KB
testcase_22 AC 59 ms
70,404 KB
testcase_23 AC 53 ms
74,480 KB
testcase_24 AC 61 ms
72,500 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 34 ms
53,460 KB
testcase_31 AC 34 ms
53,460 KB
testcase_32 AC 33 ms
53,460 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 36 ms
53,460 KB
testcase_41 WA -
testcase_42 AC 36 ms
53,460 KB
testcase_43 AC 34 ms
53,460 KB
testcase_44 AC 33 ms
53,460 KB
testcase_45 AC 33 ms
53,460 KB
testcase_46 WA -
testcase_47 AC 34 ms
53,460 KB
testcase_48 AC 33 ms
53,460 KB
testcase_49 WA -
testcase_50 AC 33 ms
53,460 KB
testcase_51 WA -
testcase_52 AC 34 ms
53,460 KB
testcase_53 AC 37 ms
53,460 KB
testcase_54 AC 35 ms
53,460 KB
testcase_55 AC 33 ms
53,460 KB
testcase_56 AC 33 ms
53,460 KB
testcase_57 AC 33 ms
53,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(n, m, s):
    # o---x or x---o
    # o---o
    # x---x
    # がそれぞれ長さいくつが何個あるか数える
    type_0 = [0] * (n + 1)
    type_1 = [0] * (n + 1)
    type_2 = [0] * (n + 1)
    left = "x"
    c = 0
    res = 0
    xc = 0
    for i in range(n + 1):
        if i < n:
            a = s[i]
            if a == "x":
                xc += 1
        else:
            a = "x"
        if a == "o":
            res += 1
        if a == "-":
            c += 1
        else:
            if a == "x" and left == "x":
                type_2[c] += 1
            elif a == "o" and left == "o":
                type_1[c] += 1
            else:
                type_0[c] += 1
            c = 0
            left = a
    # そもそも休み
    res += type_1[1]
    # print(res)
    # print(type_0)
    # print(type_1)
    # print(type_2)
    # 貪欲
    mm = m
    for i in range(3, n + 1, 2):
        d = min(mm // (i // 2), type_1[i])
        res += i * d
        mm -= d * (i // 2)
        if d < type_1[i]:
            res += 2 * mm
            mm = 0
            break
    # 2倍増えるところ
    twos = 0
    for i in range(2, n + 1, 2):
        twos += type_1[i] * (i // 2)
    for i in range(n + 1):
        twos += type_0[i] * (i // 2)
    # print(twos)

    if mm > twos:
        res += 2 * twos
        mm -= twos
    else:
        res += 2 * mm
        mm = 0

    # 2倍弱増えるところ
    for i in range(n, 2, -1):
        d = min(mm // ((i + 1) // 2), type_2[i])
        if i % 2 == 1:
            res += i * d
        else:
            res += (i - 1) * d
        mm -= d * ((i + 1) // 2)
        if d < type_2[i]:
            res += 2 * mm - 1
            mm = 0
            break

    # それでも余った場合
    res_max = n - xc
    res = min(res + mm, res_max)
    # print(res)
    return res


def main():
    n, m = map(int, input().split())
    s = input()
    res = solve(n, m, s)
    print(res)


def test():
    assert solve(8, 2, "x-o----x") == 5
    assert solve(20, 5, "xo--x-o--o--------ox") == 14
    assert solve(5, 0, "xo-ox") == 3
    assert solve(20, 20, "xo--x-o--o--------ox") == 17
    assert solve(5, 5, "xo-ox") == 3
    assert solve(6, 3, "------") == 5


if __name__ == "__main__":
    test()
    main()
0