結果

問題 No.945 YKC饅頭
ユーザー titiatitia
提出日時 2019-12-08 01:46:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,232 ms / 2,000 ms
コード長 2,727 bytes
コンパイル時間 397 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 125,840 KB
最終ジャッジ日時 2024-12-27 15:00:32
合計ジャッジ時間 32,997 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,276 KB
testcase_01 AC 44 ms
52,224 KB
testcase_02 AC 72 ms
67,072 KB
testcase_03 AC 103 ms
76,160 KB
testcase_04 AC 57 ms
61,440 KB
testcase_05 AC 84 ms
75,948 KB
testcase_06 AC 88 ms
75,904 KB
testcase_07 AC 85 ms
75,368 KB
testcase_08 AC 60 ms
64,000 KB
testcase_09 AC 71 ms
70,784 KB
testcase_10 AC 91 ms
75,648 KB
testcase_11 AC 75 ms
70,528 KB
testcase_12 AC 94 ms
75,732 KB
testcase_13 AC 98 ms
76,160 KB
testcase_14 AC 101 ms
75,648 KB
testcase_15 AC 60 ms
62,848 KB
testcase_16 AC 69 ms
68,096 KB
testcase_17 AC 81 ms
72,576 KB
testcase_18 AC 86 ms
75,696 KB
testcase_19 AC 66 ms
67,072 KB
testcase_20 AC 63 ms
65,024 KB
testcase_21 AC 59 ms
64,384 KB
testcase_22 AC 95 ms
76,160 KB
testcase_23 AC 96 ms
76,160 KB
testcase_24 AC 98 ms
76,284 KB
testcase_25 AC 97 ms
76,416 KB
testcase_26 AC 97 ms
76,288 KB
testcase_27 AC 67 ms
67,968 KB
testcase_28 AC 75 ms
72,832 KB
testcase_29 AC 41 ms
52,736 KB
testcase_30 AC 40 ms
52,352 KB
testcase_31 AC 245 ms
81,496 KB
testcase_32 AC 322 ms
81,992 KB
testcase_33 AC 555 ms
94,556 KB
testcase_34 AC 622 ms
103,996 KB
testcase_35 AC 1,006 ms
119,260 KB
testcase_36 AC 625 ms
110,680 KB
testcase_37 AC 662 ms
107,616 KB
testcase_38 AC 612 ms
105,116 KB
testcase_39 AC 357 ms
86,068 KB
testcase_40 AC 426 ms
89,800 KB
testcase_41 AC 287 ms
82,868 KB
testcase_42 AC 798 ms
115,348 KB
testcase_43 AC 519 ms
108,324 KB
testcase_44 AC 786 ms
111,812 KB
testcase_45 AC 881 ms
119,828 KB
testcase_46 AC 199 ms
81,656 KB
testcase_47 AC 662 ms
102,936 KB
testcase_48 AC 259 ms
83,384 KB
testcase_49 AC 442 ms
90,072 KB
testcase_50 AC 950 ms
120,776 KB
testcase_51 AC 1,107 ms
125,476 KB
testcase_52 AC 1,056 ms
125,840 KB
testcase_53 AC 1,161 ms
125,568 KB
testcase_54 AC 1,146 ms
125,440 KB
testcase_55 AC 1,232 ms
125,696 KB
testcase_56 AC 267 ms
86,196 KB
testcase_57 AC 396 ms
86,320 KB
testcase_58 AC 717 ms
113,244 KB
testcase_59 AC 740 ms
119,388 KB
testcase_60 AC 560 ms
97,528 KB
testcase_61 AC 689 ms
114,376 KB
testcase_62 AC 716 ms
113,420 KB
testcase_63 AC 477 ms
86,728 KB
testcase_64 AC 550 ms
98,484 KB
testcase_65 AC 536 ms
95,940 KB
testcase_66 AC 515 ms
94,956 KB
testcase_67 AC 586 ms
105,884 KB
testcase_68 AC 500 ms
97,456 KB
testcase_69 AC 459 ms
90,208 KB
testcase_70 AC 475 ms
90,264 KB
testcase_71 AC 504 ms
90,752 KB
testcase_72 AC 579 ms
101,552 KB
testcase_73 AC 773 ms
116,916 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