結果
問題 | No.2018 X-Y-X |
ユーザー | mkawa2 |
提出日時 | 2022-07-23 00:00:01 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 213 ms / 2,000 ms |
コード長 | 1,326 bytes |
コンパイル時間 | 163 ms |
コンパイル使用メモリ | 82,520 KB |
実行使用メモリ | 86,376 KB |
最終ジャッジ日時 | 2024-07-04 08:53:32 |
合計ジャッジ時間 | 5,173 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
53,496 KB |
testcase_01 | AC | 38 ms
52,960 KB |
testcase_02 | AC | 38 ms
53,816 KB |
testcase_03 | AC | 40 ms
53,368 KB |
testcase_04 | AC | 38 ms
52,988 KB |
testcase_05 | AC | 38 ms
53,784 KB |
testcase_06 | AC | 152 ms
80,796 KB |
testcase_07 | AC | 205 ms
82,516 KB |
testcase_08 | AC | 71 ms
79,568 KB |
testcase_09 | AC | 70 ms
80,040 KB |
testcase_10 | AC | 57 ms
73,608 KB |
testcase_11 | AC | 61 ms
76,260 KB |
testcase_12 | AC | 63 ms
76,880 KB |
testcase_13 | AC | 149 ms
82,012 KB |
testcase_14 | AC | 199 ms
83,720 KB |
testcase_15 | AC | 202 ms
84,636 KB |
testcase_16 | AC | 147 ms
79,472 KB |
testcase_17 | AC | 200 ms
83,544 KB |
testcase_18 | AC | 158 ms
80,552 KB |
testcase_19 | AC | 120 ms
80,200 KB |
testcase_20 | AC | 211 ms
86,248 KB |
testcase_21 | AC | 138 ms
80,944 KB |
testcase_22 | AC | 179 ms
80,680 KB |
testcase_23 | AC | 40 ms
54,716 KB |
testcase_24 | AC | 179 ms
84,588 KB |
testcase_25 | AC | 213 ms
86,376 KB |
testcase_26 | AC | 187 ms
80,336 KB |
testcase_27 | AC | 128 ms
78,420 KB |
testcase_28 | AC | 38 ms
53,444 KB |
testcase_29 | AC | 55 ms
69,512 KB |
testcase_30 | AC | 39 ms
54,920 KB |
testcase_31 | AC | 177 ms
81,332 KB |
testcase_32 | AC | 195 ms
84,008 KB |
ソースコード
import sys # sys.setrecursionlimit(200005) int1 = lambda x: int(x)-1 pDB = lambda *x: print(*x, end="\n", file=sys.stderr) p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr) def II(): return int(sys.stdin.readline()) def LI(): return list(map(int, sys.stdin.readline().split())) def LLI(rows_number): return [LI() for _ in range(rows_number)] def LI1(): return list(map(int1, sys.stdin.readline().split())) def LLI1(rows_number): return [LI1() for _ in range(rows_number)] def SI(): return sys.stdin.readline().rstrip() dij = [(0, 1), (-1, 0), (0, -1), (1, 0)] # dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)] inf = (1 << 63)-1 # inf = (1 << 31)-1 md = 10**9+7 # md = 998244353 from heapq import * n = II() s = SI() t = SI() if s[0] != t[0] or s[-1] != t[-1]: print(-1) exit() aa = [(s[i] != s[i+1])*1 for i in range(n-1)] bb = [(t[i] != t[i+1])*1 for i in range(n-1)] # print(aa) # print(bb) hp = [] for i in range(n-2): if aa[i] == aa[i+1]: heappush(hp, i+1) ans = 0 for i in range(n-1): if aa[i] == bb[i]: continue while 1: if not hp: print(-1) exit() j = heappop(hp) if j > i and aa[j-1] == aa[j]: break aa[j] ^= 1 if j+1 < n-1 and aa[j] == aa[j+1]: heappush(hp, j+1) ans += j-i print(ans)