結果

問題 No.2018 X-Y-X
ユーザー CaiiiiiiiiCaiiiiiiii
提出日時 2024-10-02 22:56:31
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 6 ms / 2,000 ms
コード長 562 bytes
コンパイル時間 1,683 ms
コンパイル使用メモリ 200,040 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-02 22:56:35
合計ジャッジ時間 2,722 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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) {
    if((s[i] != s[i - 1]) ^ (i & 1))
      a[++ca] = i;
    if((t[i] != t[i - 1]) ^ (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