結果

問題 No.945 YKC饅頭
ユーザー pekempeypekempey
提出日時 2019-12-08 00:15:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 482 ms / 2,000 ms
コード長 881 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 85,712 KB
最終ジャッジ日時 2024-06-08 02:57:41
合計ジャッジ時間 19,109 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
68,224 KB
testcase_01 AC 59 ms
68,608 KB
testcase_02 AC 93 ms
80,256 KB
testcase_03 AC 105 ms
80,512 KB
testcase_04 AC 71 ms
73,344 KB
testcase_05 AC 99 ms
80,128 KB
testcase_06 AC 99 ms
80,256 KB
testcase_07 AC 102 ms
80,384 KB
testcase_08 AC 80 ms
75,904 KB
testcase_09 AC 87 ms
78,336 KB
testcase_10 AC 108 ms
80,384 KB
testcase_11 AC 96 ms
80,384 KB
testcase_12 AC 104 ms
80,384 KB
testcase_13 AC 106 ms
80,512 KB
testcase_14 AC 105 ms
80,000 KB
testcase_15 AC 78 ms
75,008 KB
testcase_16 AC 95 ms
79,744 KB
testcase_17 AC 101 ms
80,256 KB
testcase_18 AC 109 ms
80,512 KB
testcase_19 AC 93 ms
80,384 KB
testcase_20 AC 79 ms
76,544 KB
testcase_21 AC 76 ms
75,136 KB
testcase_22 AC 120 ms
80,640 KB
testcase_23 AC 112 ms
80,128 KB
testcase_24 AC 122 ms
80,512 KB
testcase_25 AC 113 ms
80,768 KB
testcase_26 AC 115 ms
80,512 KB
testcase_27 AC 82 ms
77,184 KB
testcase_28 AC 77 ms
76,672 KB
testcase_29 AC 59 ms
68,096 KB
testcase_30 AC 59 ms
68,480 KB
testcase_31 AC 177 ms
81,920 KB
testcase_32 AC 202 ms
82,944 KB
testcase_33 AC 277 ms
83,996 KB
testcase_34 AC 297 ms
82,688 KB
testcase_35 AC 401 ms
84,480 KB
testcase_36 AC 311 ms
82,660 KB
testcase_37 AC 274 ms
81,816 KB
testcase_38 AC 274 ms
81,888 KB
testcase_39 AC 224 ms
82,688 KB
testcase_40 AC 267 ms
84,096 KB
testcase_41 AC 231 ms
83,712 KB
testcase_42 AC 329 ms
83,120 KB
testcase_43 AC 263 ms
81,220 KB
testcase_44 AC 343 ms
83,968 KB
testcase_45 AC 346 ms
82,688 KB
testcase_46 AC 202 ms
82,560 KB
testcase_47 AC 312 ms
82,944 KB
testcase_48 AC 171 ms
82,012 KB
testcase_49 AC 247 ms
83,408 KB
testcase_50 AC 420 ms
83,328 KB
testcase_51 AC 482 ms
84,608 KB
testcase_52 AC 437 ms
84,480 KB
testcase_53 AC 466 ms
84,608 KB
testcase_54 AC 438 ms
84,352 KB
testcase_55 AC 451 ms
84,480 KB
testcase_56 AC 202 ms
83,712 KB
testcase_57 AC 130 ms
83,584 KB
testcase_58 AC 407 ms
84,992 KB
testcase_59 AC 437 ms
84,864 KB
testcase_60 AC 313 ms
84,480 KB
testcase_61 AC 482 ms
85,712 KB
testcase_62 AC 423 ms
84,352 KB
testcase_63 AC 141 ms
84,736 KB
testcase_64 AC 328 ms
84,736 KB
testcase_65 AC 308 ms
84,736 KB
testcase_66 AC 302 ms
84,608 KB
testcase_67 AC 428 ms
85,312 KB
testcase_68 AC 326 ms
84,608 KB
testcase_69 AC 255 ms
85,136 KB
testcase_70 AC 238 ms
84,992 KB
testcase_71 AC 249 ms
84,864 KB
testcase_72 AC 369 ms
84,864 KB
testcase_73 AC 439 ms
84,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
N, M = map(int, input().split())

def merge(x, y):
  if x is None: return y
  return x

U = 1 << 18
seg = [None] * (U * 2)
for i in range(N + 1):
  seg[i + U] = i

for i in reversed(range(1, U)):
  seg[i] = merge(seg[i * 2], seg[i * 2 + 1])

def erase(k):
  k += U
  seg[k] = None
  while k > 1:
    k >>= 1
    seg[k] = merge(seg[k * 2], seg[k * 2 + 1])

def find(l):
  l += U
  r = 2*U - 1
  resl = None
  resr = None
  while l <= r:
    if l % 2 == 1:
      resl = merge(resl, seg[l])
      l += 1
    if r % 2 == 0:
      resr = merge(seg[r], resr)
      r -= 1
    l >>= 1
    r >>= 1
  return merge(resl, resr)

ans = defaultdict(int)

for _ in range(M):
  l, r, t = input().split()
  l = int(l) - 1
  r = int(r) - 1
  while True:
    l = find(l)
    if l > r: break
    ans[t] += 1
    erase(l)

print(ans['Y'], ans['K'], ans['C'])

    
0