結果

問題 No.945 YKC饅頭
ユーザー prd_xxxprd_xxx
提出日時 2019-12-08 01:00:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,341 ms / 2,000 ms
コード長 2,153 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 145,536 KB
最終ジャッジ日時 2024-06-08 09:55:31
合計ジャッジ時間 34,707 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 38 ms
52,480 KB
testcase_02 AC 67 ms
67,200 KB
testcase_03 AC 97 ms
76,440 KB
testcase_04 AC 49 ms
62,336 KB
testcase_05 AC 82 ms
76,288 KB
testcase_06 AC 103 ms
76,608 KB
testcase_07 AC 88 ms
76,312 KB
testcase_08 AC 57 ms
65,024 KB
testcase_09 AC 74 ms
72,576 KB
testcase_10 AC 92 ms
76,288 KB
testcase_11 AC 75 ms
74,368 KB
testcase_12 AC 89 ms
76,416 KB
testcase_13 AC 98 ms
76,544 KB
testcase_14 AC 98 ms
76,416 KB
testcase_15 AC 58 ms
66,048 KB
testcase_16 AC 66 ms
68,224 KB
testcase_17 AC 83 ms
76,112 KB
testcase_18 AC 94 ms
76,328 KB
testcase_19 AC 65 ms
69,376 KB
testcase_20 AC 59 ms
65,408 KB
testcase_21 AC 61 ms
66,816 KB
testcase_22 AC 102 ms
76,544 KB
testcase_23 AC 108 ms
76,280 KB
testcase_24 AC 100 ms
76,420 KB
testcase_25 AC 101 ms
77,056 KB
testcase_26 AC 102 ms
76,416 KB
testcase_27 AC 57 ms
65,664 KB
testcase_28 AC 58 ms
66,176 KB
testcase_29 AC 38 ms
52,224 KB
testcase_30 AC 39 ms
52,480 KB
testcase_31 AC 201 ms
81,396 KB
testcase_32 AC 259 ms
82,008 KB
testcase_33 AC 457 ms
95,756 KB
testcase_34 AC 724 ms
113,592 KB
testcase_35 AC 1,153 ms
135,172 KB
testcase_36 AC 693 ms
122,796 KB
testcase_37 AC 692 ms
121,684 KB
testcase_38 AC 716 ms
116,608 KB
testcase_39 AC 324 ms
87,656 KB
testcase_40 AC 391 ms
90,496 KB
testcase_41 AC 249 ms
82,688 KB
testcase_42 AC 972 ms
126,212 KB
testcase_43 AC 560 ms
122,668 KB
testcase_44 AC 904 ms
123,648 KB
testcase_45 AC 1,033 ms
139,904 KB
testcase_46 AC 197 ms
82,048 KB
testcase_47 AC 767 ms
112,768 KB
testcase_48 AC 262 ms
85,316 KB
testcase_49 AC 426 ms
93,056 KB
testcase_50 AC 1,118 ms
141,340 KB
testcase_51 AC 1,320 ms
145,408 KB
testcase_52 AC 1,341 ms
145,536 KB
testcase_53 AC 1,316 ms
145,408 KB
testcase_54 AC 1,321 ms
145,356 KB
testcase_55 AC 1,337 ms
145,344 KB
testcase_56 AC 276 ms
85,120 KB
testcase_57 AC 271 ms
84,608 KB
testcase_58 AC 845 ms
125,952 KB
testcase_59 AC 963 ms
134,016 KB
testcase_60 AC 548 ms
101,632 KB
testcase_61 AC 888 ms
128,896 KB
testcase_62 AC 879 ms
126,848 KB
testcase_63 AC 330 ms
86,308 KB
testcase_64 AC 609 ms
102,908 KB
testcase_65 AC 536 ms
99,312 KB
testcase_66 AC 537 ms
98,636 KB
testcase_67 AC 741 ms
114,300 KB
testcase_68 AC 570 ms
102,308 KB
testcase_69 AC 400 ms
90,716 KB
testcase_70 AC 452 ms
91,884 KB
testcase_71 AC 433 ms
92,080 KB
testcase_72 AC 671 ms
108,928 KB
testcase_73 AC 926 ms
132,096 KB
権限があれば一括ダウンロードができます

ソースコード

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