結果

問題 No.2018 X-Y-X
ユーザー SSRSSSRS
提出日時 2022-07-22 21:31:19
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 14 ms / 2,000 ms
コード長 745 bytes
コンパイル時間 1,552 ms
コンパイル使用メモリ 170,948 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-04 05:29:38
合計ジャッジ時間 3,172 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 31
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
  int N;
  cin >> N;
  string S;
  cin >> S;
  string T;
  cin >> T;
  for (int i = 0; i < N; i++){
    if (i % 4 >= 2){
      S[i] ^= 'A' ^ 'B';
      T[i] ^= 'A' ^ 'B';
    }
  }
  if (S[0] != T[0] || S[N - 1] != T[N - 1]){
    cout << -1 << endl;
  } else {
    vector<int> p, q;
    for (int i = 0; i < N - 1; i++){
      if (S[i] != S[i + 1]){
        p.push_back(i);
      }
      if (T[i] != T[i + 1]){
        q.push_back(i);
      }
    }
    if (p.size() != q.size()){
      cout << -1 << endl;
    } else {
      int cnt = p.size();
      long long ans = 0;
      for (int i = 0; i < cnt; i++){
        ans += abs(p[i] - q[i]);
      }
      cout << ans << endl;
    }
  }  
}
0