結果

問題 No.945 YKC饅頭
ユーザー titiatitia
提出日時 2019-12-08 01:46:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,147 ms / 2,000 ms
コード長 2,727 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 126,280 KB
最終ジャッジ日時 2024-06-08 10:47:32
合計ジャッジ時間 31,924 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,480 KB
testcase_01 AC 41 ms
52,608 KB
testcase_02 AC 73 ms
66,816 KB
testcase_03 AC 88 ms
76,032 KB
testcase_04 AC 50 ms
61,312 KB
testcase_05 AC 81 ms
75,776 KB
testcase_06 AC 84 ms
75,904 KB
testcase_07 AC 81 ms
75,648 KB
testcase_08 AC 55 ms
64,384 KB
testcase_09 AC 73 ms
70,528 KB
testcase_10 AC 85 ms
76,160 KB
testcase_11 AC 71 ms
70,656 KB
testcase_12 AC 89 ms
76,032 KB
testcase_13 AC 92 ms
75,928 KB
testcase_14 AC 86 ms
76,032 KB
testcase_15 AC 55 ms
63,232 KB
testcase_16 AC 64 ms
67,968 KB
testcase_17 AC 76 ms
72,448 KB
testcase_18 AC 83 ms
75,776 KB
testcase_19 AC 65 ms
66,816 KB
testcase_20 AC 57 ms
65,024 KB
testcase_21 AC 56 ms
64,128 KB
testcase_22 AC 93 ms
76,288 KB
testcase_23 AC 97 ms
76,212 KB
testcase_24 AC 96 ms
76,416 KB
testcase_25 AC 96 ms
76,544 KB
testcase_26 AC 104 ms
76,328 KB
testcase_27 AC 66 ms
67,712 KB
testcase_28 AC 69 ms
72,960 KB
testcase_29 AC 39 ms
52,224 KB
testcase_30 AC 39 ms
52,608 KB
testcase_31 AC 237 ms
81,236 KB
testcase_32 AC 312 ms
81,940 KB
testcase_33 AC 514 ms
94,508 KB
testcase_34 AC 572 ms
104,640 KB
testcase_35 AC 939 ms
119,252 KB
testcase_36 AC 578 ms
111,192 KB
testcase_37 AC 586 ms
108,104 KB
testcase_38 AC 591 ms
105,496 KB
testcase_39 AC 344 ms
86,328 KB
testcase_40 AC 403 ms
90,500 KB
testcase_41 AC 286 ms
83,140 KB
testcase_42 AC 795 ms
115,144 KB
testcase_43 AC 497 ms
107,940 KB
testcase_44 AC 785 ms
111,808 KB
testcase_45 AC 843 ms
119,956 KB
testcase_46 AC 200 ms
82,040 KB
testcase_47 AC 661 ms
103,196 KB
testcase_48 AC 247 ms
83,644 KB
testcase_49 AC 416 ms
90,200 KB
testcase_50 AC 927 ms
120,780 KB
testcase_51 AC 1,094 ms
126,080 KB
testcase_52 AC 1,072 ms
126,280 KB
testcase_53 AC 1,138 ms
125,720 KB
testcase_54 AC 1,091 ms
125,312 KB
testcase_55 AC 1,147 ms
126,040 KB
testcase_56 AC 263 ms
86,712 KB
testcase_57 AC 419 ms
86,128 KB
testcase_58 AC 676 ms
112,860 KB
testcase_59 AC 741 ms
119,000 KB
testcase_60 AC 519 ms
97,408 KB
testcase_61 AC 701 ms
114,896 KB
testcase_62 AC 683 ms
113,488 KB
testcase_63 AC 444 ms
87,112 KB
testcase_64 AC 525 ms
98,488 KB
testcase_65 AC 500 ms
95,944 KB
testcase_66 AC 492 ms
95,376 KB
testcase_67 AC 604 ms
105,888 KB
testcase_68 AC 518 ms
97,836 KB
testcase_69 AC 492 ms
89,828 KB
testcase_70 AC 460 ms
90,880 KB
testcase_71 AC 466 ms
90,624 KB
testcase_72 AC 573 ms
101,812 KB
testcase_73 AC 710 ms
116,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())


seg_el=1<<(N.bit_length()) # Segment treeの台の要素数
seg_height=1+N.bit_length() # Segment treeの高さ
SEG=[0]*(2*seg_el) # 1-indexedなので、要素数2*seg_el.Segment treeの初期値で初期化
LAZY=[None]*(2*seg_el) # 1-indexedなので、要素数2*seg_el.Segment treeの初期値で初期化

def indexes(L,R): # 遅延伝搬すべきノードのリストを返す. (つまり, updateやgetvaluesで見るノードより上にあるノードたち)
    INDLIST=[]

    R-=1
    
    L>>=1
    R>>=1

    while L!=R:
        if L>R:
            INDLIST.append(L)
            L>>=1
        else:
            INDLIST.append(R)
            R>>=1

    while L!=0:
        INDLIST.append(L)
        L>>=1

    return INDLIST

def updates(l,r,x): # 区間[l,r)をxに更新
        
    L=l+seg_el
    R=r+seg_el

    L//=(L & (-L))
    R//=(R & (-R))

    UPIND=indexes(L,R)
    
    for ind in UPIND[::-1]: # 遅延伝搬
        if LAZY[ind]!=None:
            update_lazy = LAZY[ind] *(1<<(seg_height - 1 - (ind.bit_length())))
            LAZY[ind<<1]=LAZY[1+(ind<<1)]=LAZY[ind]
            SEG[ind<<1]=SEG[1+(ind<<1)]=update_lazy
            LAZY[ind]=None

    while L!=R:
        if L > R:
            SEG[L]=x * (1<<(seg_height - (L.bit_length())))
            LAZY[L]=x
            L+=1
            L//=(L & (-L))

        else:
            R-=1
            SEG[R]=x * (1<<(seg_height - (R.bit_length())))
            LAZY[R]=x
            R//=(R & (-R))

    for ind in UPIND:
        SEG[ind]=SEG[ind<<1]+SEG[1+(ind<<1)]

def getvalues(l,r): # 区間[l,r)に関する和を調べる

    L=l+seg_el
    R=r+seg_el

    L//=(L & (-L))
    R//=(R & (-R))

    UPIND=indexes(L,R)
    
    for ind in UPIND[::-1]: # 遅延伝搬
        if LAZY[ind]!=None:
            update_lazy = LAZY[ind] *(1<<(seg_height - 1 - (ind.bit_length())))
            LAZY[ind<<1]=LAZY[1+(ind<<1)]=LAZY[ind]
            SEG[ind<<1]=SEG[1+(ind<<1)]=update_lazy
            LAZY[ind]=None
            
    ANS=0

    while L!=R:
        if L > R:
            ANS+=SEG[L]
            L+=1
            L//=(L & (-L))

        else:
            R-=1
            ANS+=SEG[R]
            R//=(R & (-R))

    return ANS

QLIST=[list(input().split()) for i in range(M)]

for L,R,T in QLIST[::-1]:
    L=int(L)
    R=int(R)
    if T=="Y":
        updates(L,R+1,1)
    elif T=="K":
        updates(L,R+1,2)
    else:
        updates(L,R+1,3)

ANSY=0
ANSK=0
ANSC=0

for i in range(1,N+1):
    #print(getvalues(i,i+1))
    if getvalues(i,i+1)==1:
        ANSY+=1
    elif getvalues(i,i+1)==2:
        ANSK+=1
    elif getvalues(i,i+1)==3:
        ANSC+=1

print(ANSY,ANSK,ANSC)
        
        
        
0