結果

問題 No.2018 X-Y-X
ユーザー CaiiiiiiiiCaiiiiiiii
提出日時 2024-10-02 22:52:26
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 635 bytes
コンパイル時間 1,941 ms
コンパイル使用メモリ 199,700 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-02 22:52:30
合計ジャッジ時間 3,175 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 6 ms
5,248 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 2 ms
5,248 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 2 ms
5,248 KB
testcase_29 AC 3 ms
5,248 KB
testcase_30 AC 3 ms
5,248 KB
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using LL = long long;

const int N = 2e5 + 7;

int n, a[N], ca, b[N], cb;
char s[N], t[N];

int main() {

  scanf("%d%s%s", &n, s + 1, t + 1);

  if(s[1] != t[1] || s[n] != t[n]) {
    puts("-1");
    return 0;
  }

  for(int i = 2; i <= n; i += 2) {
    s[i] = 'A' + 'B' - s[i];
    t[i] = 'A' + 'B' - t[i];
  }
  for(int i = 2; i <= n; ++i) {
    if(s[i] != s[i - 1])
      a[++ca] = i;
    if(t[i] != t[i - 1])
      b[++cb] = i;
  }

  if(ca != cb) {
    puts("-1");
    return 0;
  }

  LL ans = 0;
  for(int i = 1; i <= ca; ++i)
    ans += std::abs(a[i]- b[i]);

  printf("%lld\n", ans);

  return 0;
}
0