結果

問題 No.945 YKC饅頭
ユーザー prd_xxxprd_xxx
提出日時 2019-12-08 00:59:34
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 2,152 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 13,056 KB
実行使用メモリ 98,304 KB
最終ジャッジ日時 2024-12-27 12:10:25
合計ジャッジ時間 102,732 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
16,128 KB
testcase_01 AC 31 ms
61,952 KB
testcase_02 AC 31 ms
16,128 KB
testcase_03 AC 48 ms
86,144 KB
testcase_04 AC 31 ms
16,128 KB
testcase_05 AC 38 ms
76,544 KB
testcase_06 AC 43 ms
16,256 KB
testcase_07 AC 41 ms
70,784 KB
testcase_08 AC 32 ms
16,256 KB
testcase_09 AC 35 ms
65,024 KB
testcase_10 AC 40 ms
16,128 KB
testcase_11 AC 36 ms
79,744 KB
testcase_12 AC 39 ms
16,256 KB
testcase_13 AC 46 ms
70,656 KB
testcase_14 AC 44 ms
16,384 KB
testcase_15 AC 32 ms
73,216 KB
testcase_16 AC 33 ms
16,128 KB
testcase_17 AC 40 ms
88,576 KB
testcase_18 AC 41 ms
16,256 KB
testcase_19 AC 33 ms
60,672 KB
testcase_20 AC 32 ms
16,256 KB
testcase_21 AC 31 ms
89,856 KB
testcase_22 AC 47 ms
16,384 KB
testcase_23 AC 49 ms
98,176 KB
testcase_24 AC 50 ms
16,256 KB
testcase_25 AC 48 ms
98,304 KB
testcase_26 AC 48 ms
18,084 KB
testcase_27 AC 32 ms
16,256 KB
testcase_28 AC 35 ms
17,956 KB
testcase_29 AC 30 ms
16,000 KB
testcase_30 AC 30 ms
17,700 KB
testcase_31 AC 493 ms
20,864 KB
testcase_32 AC 749 ms
22,692 KB
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 AC 1,297 ms
27,648 KB
testcase_40 AC 1,546 ms
24,448 KB
testcase_41 AC 739 ms
16,768 KB
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 AC 466 ms
15,488 KB
testcase_47 TLE -
testcase_48 AC 821 ms
20,352 KB
testcase_49 TLE -
testcase_50 TLE -
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
testcase_55 TLE -
testcase_56 AC 1,138 ms
19,328 KB
testcase_57 AC 1,051 ms
19,584 KB
testcase_58 TLE -
testcase_59 TLE -
testcase_60 TLE -
testcase_61 TLE -
testcase_62 TLE -
testcase_63 AC 1,089 ms
20,224 KB
testcase_64 TLE -
testcase_65 TLE -
testcase_66 TLE -
testcase_67 TLE -
testcase_68 TLE -
testcase_69 AC 1,426 ms
25,472 KB
testcase_70 AC 1,526 ms
27,136 KB
testcase_71 AC 1,556 ms
27,520 KB
testcase_72 TLE -
testcase_73 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
N,M = map(int,input().split())
LRT = [input().split() for i in range(M)]

#参照
#https://smijake3.hatenablog.com/entry/2018/11/03/100133

INF = 2**31-1

LV = N.bit_length()
N0 = 2**LV
data = [INF]*(2*N0)
lazy = [None]*(2*N0)

# 伝搬される区間のインデックス(1-indexed)を全て列挙するgenerator
LV = (N-1).bit_length()
N0 = 2**LV
def gindex(l, r):
    L = l + N0; R = r + N0
    lm = (L // (L & -L)) >> 1
    rm = (R // (R & -R)) >> 1
    while L < R:
        if R <= rm:
            yield R
        if L <= lm:
            yield L
        L >>= 1; R >>= 1
    while L:
        yield L
        L >>= 1

# 1-indexedで単調増加のインデックスリストを渡す
def propagates(*ids):
    for i in reversed(ids):
        v = lazy[i-1]
        if v is None:
            continue
        lazy[2*i-1] = data[2*i-1] = lazy[2*i] = data[2*i] = v
        lazy[i-1] = None

def update(l, r, x):
    *ids, = gindex(l, r)
    # 1. トップダウンにlazyの値を伝搬
    propagates(*ids)

    # 2. 区間[l, r)のdata, lazyの値を更新
    L = N0 + l; R = N0 + r
    while L < R:
        if R & 1:
            R -= 1
            lazy[R-1] = data[R-1] = x
        if L & 1:
            lazy[L-1] = data[L-1] = x
            L += 1
        L >>= 1; R >>= 1

    # 3. 伝搬させた区間について、ボトムアップにdataの値を伝搬する
    for i in ids:
        data[i-1] = min(data[2*i-1], data[2*i])

def query(l, r):
    # 1. トップダウンにlazyの値を伝搬
    propagates(*gindex(l, r))
    L = N0 + l; R = N0 + r

    # 2. 区間[l, r)の最小値を求める
    s = INF
    while L < R:
        if R & 1:
            R -= 1
            s = min(s, data[R-1])
        if L & 1:
            s = min(s, data[L-1])
            L += 1
        L >>= 1; R >>= 1
    return s



for i,(l,r,t) in reversed(list(enumerate(LRT))):
    l,r = int(l),int(r)
    update(l,r+1,i)

y = k = c = 0
for i in range(1,N+1):
    j = query(i,i+1)
    if j >= M: continue
    t = LRT[j][2]
    if t=='Y':
        y += 1
    elif t=='K':
        k += 1
    else:
        c += 1
print(y,k,c)
0