結果

問題 No.204 ゴールデン・ウィーク(2)
ユーザー kichirb3kichirb3
提出日時 2018-03-27 15:55:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,593 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-06-25 12:48:22
合計ジャッジ時間 3,173 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 31 ms
10,752 KB
testcase_02 WA -
testcase_03 AC 31 ms
10,880 KB
testcase_04 AC 30 ms
10,880 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 31 ms
10,880 KB
testcase_08 AC 31 ms
10,880 KB
testcase_09 AC 31 ms
10,752 KB
testcase_10 AC 31 ms
10,880 KB
testcase_11 AC 31 ms
10,752 KB
testcase_12 AC 30 ms
10,880 KB
testcase_13 AC 30 ms
10,752 KB
testcase_14 AC 30 ms
10,880 KB
testcase_15 WA -
testcase_16 AC 30 ms
10,752 KB
testcase_17 AC 31 ms
10,880 KB
testcase_18 AC 31 ms
10,752 KB
testcase_19 AC 31 ms
10,752 KB
testcase_20 AC 31 ms
10,880 KB
testcase_21 AC 31 ms
11,008 KB
testcase_22 AC 30 ms
10,880 KB
testcase_23 AC 30 ms
10,752 KB
testcase_24 AC 31 ms
10,752 KB
testcase_25 WA -
testcase_26 AC 30 ms
10,752 KB
testcase_27 WA -
testcase_28 AC 31 ms
10,880 KB
testcase_29 AC 31 ms
10,880 KB
testcase_30 AC 30 ms
10,880 KB
testcase_31 AC 31 ms
10,752 KB
testcase_32 AC 30 ms
10,880 KB
testcase_33 AC 30 ms
10,880 KB
testcase_34 AC 31 ms
10,752 KB
testcase_35 AC 30 ms
10,880 KB
testcase_36 AC 31 ms
10,880 KB
testcase_37 AC 31 ms
10,880 KB
testcase_38 AC 30 ms
10,752 KB
testcase_39 AC 31 ms
10,752 KB
testcase_40 AC 31 ms
10,752 KB
testcase_41 AC 31 ms
10,880 KB
testcase_42 AC 30 ms
10,752 KB
testcase_43 AC 30 ms
10,880 KB
testcase_44 AC 31 ms
10,752 KB
testcase_45 AC 30 ms
10,752 KB
testcase_46 AC 30 ms
10,880 KB
testcase_47 AC 31 ms
10,752 KB
testcase_48 AC 30 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from sys import stdin
input = stdin.readline


def take_days_off(wds, D, s, cal):
    # カレンダーのs日目からD日連続の有給を取得した場合のカレンダー情報を返す
    # 有給休暇が複数の平日島にまたがってしまう場合、有給休暇を取得できないのでNoneを返す
    t = [x for x in wds if s<= x <= s+D-1]
    if len(t) >= 2:
        return None

    gw = list(cal)
    for i in range(s, s+D):
        gw[i] = 'o'
    return ''.join(gw)


def check_longest(cal):
    # カレンダーをチェックして、一番長い連休日数を返す
    res = cal.split('x')
    ans = 0
    for r in res:
        ans = max(ans, len(r))
    return ans


def solve(D, cal):
    # 有給休暇が複数の平日島にまたがらないかのチェック用に平日がスタートする日の一覧を用意
    working_day_start = [0]
    for i in range(1, len(cal)):
        if cal[i-1] == 'o' and cal[i] == 'x':
            working_day_start.append(i)

    ans = D
    for i in range(len(cal)-D+1):
        gw = take_days_off(working_day_start, D, i, cal)
        if not gw is None:
            ans = max(ans, check_longest(gw))
    return ans


def main(args):
    D = int(input())
    # 素のカレンダー情報を文字列として記憶、2週間の前後で有給休暇を取得しても良いので前後D日分の平日も追加しておく
    cal = 'x' * D
    cal += input().strip()
    cal += input().strip()
    cal += 'x' * D
    ans = solve(D, cal)
    print(ans)


if __name__ == '__main__':
    main(sys.argv[1:])
0