結果

問題 No.145 yukiover
ユーザー maspymaspy
提出日時 2020-03-03 23:25:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 251 ms / 5,000 ms
コード長 868 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 13,888 KB
最終ジャッジ日時 2024-10-13 23:22:41
合計ジャッジ時間 2,254 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 29 ms
10,496 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 27 ms
10,496 KB
testcase_04 AC 26 ms
10,496 KB
testcase_05 AC 31 ms
10,496 KB
testcase_06 AC 26 ms
10,624 KB
testcase_07 AC 27 ms
10,752 KB
testcase_08 AC 28 ms
10,752 KB
testcase_09 AC 26 ms
10,752 KB
testcase_10 AC 29 ms
10,624 KB
testcase_11 AC 35 ms
12,288 KB
testcase_12 AC 58 ms
13,888 KB
testcase_13 AC 46 ms
13,648 KB
testcase_14 AC 89 ms
13,124 KB
testcase_15 AC 129 ms
12,928 KB
testcase_16 AC 251 ms
12,160 KB
testcase_17 AC 88 ms
13,632 KB
testcase_18 AC 70 ms
13,500 KB
testcase_19 AC 83 ms
13,372 KB
testcase_20 AC 78 ms
13,628 KB
testcase_21 AC 61 ms
13,628 KB
testcase_22 AC 70 ms
13,500 KB
testcase_23 AC 65 ms
12,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# %%
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

# %%
N = int(readline())
S = read().rstrip().decode()


# %%
def test(n, alphabets, word):
    """alphabetsを使ってwordより真に大きいものをn個つくれる"""
    if n <= 0:
        return True
    if not word:
        return len(alphabets) >= n
    w = word[0]
    while alphabets and alphabets[-1] > w:
        alphabets.pop()
        n -= 1
    if n <= 0:
        return True
    if len(alphabets) < n:
        return False
    if alphabets[-n] < w:
        return False
    return test(n, alphabets[:-n], word[1:])


# %%
A = sorted(S)
left = 0
right = N + 1
while left + 1 < right:
    x = (left + right) // 2
    if test(x, A[:], 'yuki'):
        left = x
    else:
        right = x


# %%
print(left)
0