結果

問題 No.945 YKC饅頭
ユーザー pekempeypekempey
提出日時 2019-12-08 00:15:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 470 ms / 2,000 ms
コード長 881 bytes
コンパイル時間 424 ms
コンパイル使用メモリ 81,872 KB
実行使用メモリ 85,304 KB
最終ジャッジ日時 2024-12-26 18:58:17
合計ジャッジ時間 18,999 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
68,352 KB
testcase_01 AC 57 ms
68,608 KB
testcase_02 AC 82 ms
79,944 KB
testcase_03 AC 92 ms
80,288 KB
testcase_04 AC 67 ms
73,600 KB
testcase_05 AC 98 ms
79,984 KB
testcase_06 AC 96 ms
79,996 KB
testcase_07 AC 99 ms
79,720 KB
testcase_08 AC 74 ms
76,288 KB
testcase_09 AC 80 ms
78,580 KB
testcase_10 AC 99 ms
80,300 KB
testcase_11 AC 91 ms
80,080 KB
testcase_12 AC 96 ms
80,208 KB
testcase_13 AC 102 ms
80,504 KB
testcase_14 AC 97 ms
80,256 KB
testcase_15 AC 73 ms
74,496 KB
testcase_16 AC 83 ms
79,792 KB
testcase_17 AC 87 ms
80,128 KB
testcase_18 AC 98 ms
80,016 KB
testcase_19 AC 87 ms
79,976 KB
testcase_20 AC 73 ms
76,800 KB
testcase_21 AC 72 ms
75,136 KB
testcase_22 AC 114 ms
80,512 KB
testcase_23 AC 105 ms
80,152 KB
testcase_24 AC 118 ms
80,412 KB
testcase_25 AC 106 ms
80,360 KB
testcase_26 AC 115 ms
80,292 KB
testcase_27 AC 75 ms
77,000 KB
testcase_28 AC 71 ms
76,800 KB
testcase_29 AC 56 ms
68,480 KB
testcase_30 AC 55 ms
68,096 KB
testcase_31 AC 162 ms
82,176 KB
testcase_32 AC 199 ms
83,328 KB
testcase_33 AC 275 ms
84,116 KB
testcase_34 AC 284 ms
82,668 KB
testcase_35 AC 404 ms
83,900 KB
testcase_36 AC 297 ms
82,148 KB
testcase_37 AC 278 ms
81,692 KB
testcase_38 AC 334 ms
82,280 KB
testcase_39 AC 215 ms
82,548 KB
testcase_40 AC 269 ms
83,652 KB
testcase_41 AC 230 ms
83,312 KB
testcase_42 AC 321 ms
82,432 KB
testcase_43 AC 256 ms
81,348 KB
testcase_44 AC 338 ms
83,824 KB
testcase_45 AC 352 ms
82,516 KB
testcase_46 AC 185 ms
82,352 KB
testcase_47 AC 299 ms
82,712 KB
testcase_48 AC 165 ms
81,372 KB
testcase_49 AC 235 ms
82,896 KB
testcase_50 AC 391 ms
83,388 KB
testcase_51 AC 446 ms
84,400 KB
testcase_52 AC 439 ms
84,768 KB
testcase_53 AC 456 ms
84,468 KB
testcase_54 AC 418 ms
84,088 KB
testcase_55 AC 432 ms
84,320 KB
testcase_56 AC 194 ms
83,496 KB
testcase_57 AC 115 ms
83,620 KB
testcase_58 AC 398 ms
84,644 KB
testcase_59 AC 470 ms
84,516 KB
testcase_60 AC 327 ms
84,152 KB
testcase_61 AC 464 ms
85,088 KB
testcase_62 AC 418 ms
84,512 KB
testcase_63 AC 133 ms
84,328 KB
testcase_64 AC 332 ms
84,748 KB
testcase_65 AC 314 ms
84,244 KB
testcase_66 AC 292 ms
84,180 KB
testcase_67 AC 440 ms
85,304 KB
testcase_68 AC 344 ms
84,344 KB
testcase_69 AC 264 ms
85,008 KB
testcase_70 AC 236 ms
84,736 KB
testcase_71 AC 244 ms
84,436 KB
testcase_72 AC 369 ms
84,448 KB
testcase_73 AC 468 ms
84,332 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