結果
問題 | No.2076 Concon Substrings (ConVersion) |
ユーザー | 👑 rin204 |
提出日時 | 2022-09-16 22:08:19 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 997 bytes |
コンパイル時間 | 165 ms |
コンパイル使用メモリ | 82,236 KB |
実行使用メモリ | 76,988 KB |
最終ジャッジ日時 | 2024-06-01 13:09:01 |
合計ジャッジ時間 | 3,221 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
52,988 KB |
testcase_01 | AC | 39 ms
54,520 KB |
testcase_02 | AC | 38 ms
52,404 KB |
testcase_03 | AC | 39 ms
53,480 KB |
testcase_04 | AC | 39 ms
53,144 KB |
testcase_05 | WA | - |
testcase_06 | AC | 43 ms
59,036 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 40 ms
54,492 KB |
testcase_11 | AC | 38 ms
52,688 KB |
testcase_12 | WA | - |
testcase_13 | AC | 40 ms
53,200 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 39 ms
53,552 KB |
testcase_22 | WA | - |
testcase_23 | AC | 48 ms
62,436 KB |
testcase_24 | AC | 49 ms
62,808 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | AC | 49 ms
62,884 KB |
testcase_31 | WA | - |
ソースコード
from heapq import * n, a, b = map(int, input().split()) S = input() S = S.replace("con", "*") lst = [] row = 0 for s in S: if s == "*": row += 1 else: if row != 0: lst.append(row) row = 0 if row != 0: lst.append(row) lst.sort() tot = sum(lst) c = 0 d = 0 C = [] for l in lst: c += l // a l %= a d += l // b l %= b C.append(-l) C.sort() def ok(x): aa = (x + 1) // 2 bb = x - aa ab = aa * a + bb * b if ab > tot: return False if c < aa: return False elif d >= bb: return True cc = c - aa dd = bb - d hq = C[:] for _ in range(cc): k = -heappop(hq) k += a dd -= k // bb k %= bb if dd <= 0: return True k %= b heappush(hq, -k) return dd <= 0 l = 0 r = n + 1 while r - l > 1: mid = (l + r) // 2 if ok(mid): l = mid else: r = mid print(l)