結果

問題 No.603 hel__world (2)
ユーザー maspymaspy
提出日時 2020-05-05 20:33:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 2,123 bytes
コンパイル時間 79 ms
コンパイル使用メモリ 11,112 KB
実行使用メモリ 96,520 KB
最終ジャッジ日時 2023-09-09 09:58:41
合計ジャッジ時間 17,192 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 245 ms
68,656 KB
testcase_01 AC 243 ms
68,520 KB
testcase_02 AC 241 ms
68,744 KB
testcase_03 AC 243 ms
68,388 KB
testcase_04 AC 243 ms
68,468 KB
testcase_05 AC 241 ms
68,672 KB
testcase_06 AC 127 ms
29,652 KB
testcase_07 AC 246 ms
68,340 KB
testcase_08 AC 239 ms
68,820 KB
testcase_09 AC 238 ms
68,668 KB
testcase_10 AC 239 ms
68,496 KB
testcase_11 AC 1,242 ms
86,624 KB
testcase_12 AC 1,208 ms
86,508 KB
testcase_13 AC 1,217 ms
87,200 KB
testcase_14 AC 241 ms
68,824 KB
testcase_15 WA -
testcase_16 AC 242 ms
68,504 KB
testcase_17 AC 243 ms
68,496 KB
testcase_18 AC 240 ms
68,452 KB
testcase_19 AC 239 ms
68,380 KB
testcase_20 AC 554 ms
77,796 KB
testcase_21 AC 551 ms
77,620 KB
testcase_22 AC 126 ms
29,556 KB
testcase_23 AC 258 ms
68,468 KB
testcase_24 AC 264 ms
68,512 KB
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 AC 551 ms
77,812 KB
testcase_30 AC 397 ms
72,684 KB
testcase_31 AC 241 ms
68,676 KB
testcase_32 AC 551 ms
77,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import numpy as np

read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

MOD = 10**6 + 3

S = tuple(map(int, readline().split()))
T = tuple(x - ord('a') for x in read().rstrip())

L = [[] for _ in range(26)]
last_ch = -1
last_len = 0
for x in T:
    if x != last_ch:
        L[x].append(1)
    else:
        L[x][-1] += 1
    last_ch = x

def check_zero(S, L):
    for a in range(26):
        # if S[a] > 0 and (not L[a]):
        #     return True
        if S[a] < sum(L[a]):
            return True

if check_zero(S, L):
    print(0)
    exit()

def cumprod(A, MOD=MOD):
    L = len(A)
    Lsq = int(L**.5 + 1)
    A = np.resize(A, Lsq**2).reshape(Lsq, Lsq)
    for n in range(1, Lsq):
        A[:, n] *= A[:, n - 1]
        A[:, n] %= MOD
    for n in range(1, Lsq):
        A[n] *= A[n - 1, -1]
        A[n] %= MOD
    return A.ravel()[:L]


def make_fact(U, MOD=MOD):
    x = np.arange(U, dtype=np.int64)
    x[0] = 1
    fact = cumprod(x, MOD)
    x = np.arange(U, 0, -1, dtype=np.int64)
    x[0] = pow(int(fact[-1]), MOD - 2, MOD)
    fact_inv = cumprod(x, MOD)[::-1]
    fact.flags.writeable = False
    fact_inv.flags.writeable = False
    return fact, fact_inv

fact, fact_inv = make_fact(MOD)

def compute(n, nums):
    if not nums:
        return 1
    nums = np.asarray(nums, np.int64)
    s = n - nums.sum()
    low = 0  # low * k 以下は全部とる
    high = 2 * (10**18) // (nums.sum())
    for _ in range(200):
        x = (low + high) / 2
        a = np.floor(x * nums).astype(np.int64)
        if a.sum() <= s:
            low = x
        else:
            high = x
    n1 = nums + np.floor(low * nums).astype(np.int64)
    n2 = nums + np.floor(high * nums).astype(np.int64)
    r = n - n1.sum()
    assert r < 100
    I = np.where(n1 < n2)[0]
    n1[I[:r]] += 1
    n = n1
    k = nums
    # nCkの積を計算しよう
    n %= MOD
    if np.any(n < k):
        return 0
    x = fact[n] * fact_inv[k] * fact_inv[n - k] % MOD
    return cumprod(x)[-1]

x = 1
for n, nums in zip(S, L):
    x *= compute(n, nums)
    x %= MOD
print(x)

0