結果

問題 No.2018 X-Y-X
ユーザー umezoumezo
提出日時 2022-07-23 00:42:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 9 ms / 2,000 ms
コード長 826 bytes
コンパイル時間 2,143 ms
コンパイル使用メモリ 202,464 KB
実行使用メモリ 6,592 KB
最終ジャッジ日時 2023-09-17 14:20:13
合計ジャッジ時間 3,824 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 1 ms
4,376 KB
testcase_05 AC 2 ms
4,380 KB
testcase_06 AC 5 ms
5,192 KB
testcase_07 AC 5 ms
5,504 KB
testcase_08 AC 7 ms
6,044 KB
testcase_09 AC 7 ms
6,056 KB
testcase_10 AC 5 ms
5,316 KB
testcase_11 AC 6 ms
5,356 KB
testcase_12 AC 6 ms
5,668 KB
testcase_13 AC 5 ms
5,240 KB
testcase_14 AC 7 ms
5,184 KB
testcase_15 AC 7 ms
5,780 KB
testcase_16 AC 4 ms
4,692 KB
testcase_17 AC 6 ms
5,380 KB
testcase_18 AC 5 ms
4,692 KB
testcase_19 AC 5 ms
4,928 KB
testcase_20 AC 4 ms
5,196 KB
testcase_21 AC 5 ms
4,960 KB
testcase_22 AC 5 ms
4,972 KB
testcase_23 AC 2 ms
4,380 KB
testcase_24 AC 9 ms
6,592 KB
testcase_25 AC 9 ms
5,960 KB
testcase_26 AC 8 ms
6,244 KB
testcase_27 AC 3 ms
4,380 KB
testcase_28 AC 2 ms
4,376 KB
testcase_29 AC 3 ms
4,376 KB
testcase_30 AC 2 ms
4,376 KB
testcase_31 AC 5 ms
4,944 KB
testcase_32 AC 6 ms
5,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;
 
#include<bits/stdc++.h>
using namespace std;

int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
 
  int n;
  string s,t;
  cin>>n>>s>>t;
  if(s[0]!=t[0] || s[n-1]!=t[n-1]){
    cout<<-1<<endl;
    return 0;
  }
  
  vector<int> A(n-1),B(n-1);
  rep(i,n-1){
    if(s[i]==s[i+1]) A[i]=0;
    else A[i]=1;
    if(t[i]==t[i+1]) B[i]=0;
    else B[i]=1;
  }
  int c1=0,c2=0;
  rep(i,n-1){
    if(i%2) A[i]^=1,B[i]^=1;
    if(A[i]) c1++;
    if(B[i]) c2++;
  }
  if(c1!=c2){
    cout<<-1<<endl;
    return 0;
  }
  ll ans=0;
  vector<int> C,D;
  rep(i,n-1){
    if(A[i]) C.push_back(i);
    if(B[i]) D.push_back(i);
  }
  int c=C.size();
  rep(i,c){
    ans+=abs(C[i]-D[i]);
  }
  cout<<ans<<endl;

  return 0;
}
0