結果
問題 | No.2076 Concon Substrings (ConVersion) |
ユーザー | Navier_Boltzmann |
提出日時 | 2023-11-12 06:29:22 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,854 bytes |
コンパイル時間 | 322 ms |
コンパイル使用メモリ | 82,500 KB |
実行使用メモリ | 80,896 KB |
最終ジャッジ日時 | 2024-09-26 03:00:38 |
合計ジャッジ時間 | 3,748 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 43 ms
56,448 KB |
testcase_01 | AC | 42 ms
56,572 KB |
testcase_02 | AC | 42 ms
56,320 KB |
testcase_03 | AC | 43 ms
56,448 KB |
testcase_04 | AC | 40 ms
56,192 KB |
testcase_05 | AC | 103 ms
80,896 KB |
testcase_06 | AC | 55 ms
66,816 KB |
testcase_07 | AC | 81 ms
77,852 KB |
testcase_08 | AC | 82 ms
77,440 KB |
testcase_09 | AC | 81 ms
77,488 KB |
testcase_10 | WA | - |
testcase_11 | AC | 44 ms
56,320 KB |
testcase_12 | AC | 43 ms
56,576 KB |
testcase_13 | AC | 44 ms
55,936 KB |
testcase_14 | AC | 42 ms
56,448 KB |
testcase_15 | AC | 114 ms
78,088 KB |
testcase_16 | WA | - |
testcase_17 | AC | 98 ms
78,468 KB |
testcase_18 | AC | 86 ms
78,192 KB |
testcase_19 | WA | - |
testcase_20 | AC | 82 ms
77,568 KB |
testcase_21 | AC | 42 ms
55,808 KB |
testcase_22 | AC | 78 ms
77,184 KB |
testcase_23 | AC | 73 ms
77,288 KB |
testcase_24 | AC | 64 ms
73,216 KB |
testcase_25 | WA | - |
testcase_26 | AC | 107 ms
78,336 KB |
testcase_27 | AC | 88 ms
77,440 KB |
testcase_28 | WA | - |
testcase_29 | AC | 76 ms
77,184 KB |
testcase_30 | AC | 102 ms
78,360 KB |
testcase_31 | WA | - |
ソースコード
from heapq import * from itertools import * from functools import * from collections import * import sys,math input = sys.stdin.readline N,A,B = map(int,input().split()) S = input()[:-1] S = S.replace('con','X') X = [] for g,r in groupby(S): n = len(list(r)) if g=='X': X.append(n) if len(X)==0: print(0) exit() ans = 0 def segfunc(x, y): return min(x,y) class SegTree: """ Segment Tree """ def __init__(self, init_val, segfunc, ide_ele): """ 初期化 init_val: 配列の初期値 """ n = len(init_val) self.segfunc = segfunc self.ide_ele = ide_ele self.num = 1 << (n - 1).bit_length() self.tree = [ide_ele] * 2 * self.num # 配列の値を葉にセット for i in range(n): self.tree[self.num + i] = init_val[i] # 構築していく for i in range(self.num - 1, 0, -1): self.tree[i] = segfunc(self.tree[2 * i], self.tree[2 * i + 1]) def update(self, k, x): """ k番目の値をxに更新 k: index(0-index) x: update value """ k += self.num self.tree[k] = x while k > 1: self.tree[k >> 1] = self.segfunc(self.tree[k], self.tree[k ^ 1]) k >>= 1 def query(self, l, r): """ [l, r)のsegfuncしたものを得る l: index(0-index) r: index(0-index) """ res = self.ide_ele l += self.num r += self.num while l < r: if l & 1: res = self.segfunc(res, self.tree[l]) l += 1 if r & 1: res = self.segfunc(res, self.tree[r - 1]) l >>= 1 r >>= 1 return res INF = (1<<30) M = max(X) T = SegTree([(INF,-1) for _ in range(M+1)],min,(INF,-1)) C = Counter(X) for k,v in C.items(): T.update(k,(k,v)) # print(X) for i in range(100000): if i%2==0: # print(k) k,v = T.query(A,M+1) if k==INF: print(ans) exit() if v==1: ans += 1 T.update(k,(INF,-1)) C[k] -= 1 C[k-A] += 1 T.update(k-A,(k-A,C[k-A])) else: ans += 1 T.update(k,(k,v-1)) C[k] -= 1 C[k-A] += 1 T.update(k-A,(k-A,C[k-A])) else: k,v = T.query(B,M+1) # print(k) if k==INF: print(ans) exit() if v==1: ans += 1 T.update(k,(INF,-1)) C[k] -= 1 C[k-B] += 1 T.update(k-B,(k-B,C[k-B])) else: ans += 1 T.update(k,(k,v-1)) C[k] -= 1 C[k-B] += 1 T.update(k-B,(k-B,C[k-B]))