結果

問題 No.2018 X-Y-X
ユーザー 沙耶花沙耶花
提出日時 2022-07-22 21:45:49
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 602 bytes
コンパイル時間 5,911 ms
コンパイル使用メモリ 259,668 KB
実行使用メモリ 4,916 KB
最終ジャッジ日時 2023-09-17 09:30:59
合計ジャッジ時間 6,533 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 1 ms
4,380 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 12 ms
4,492 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 3 ms
4,384 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 3 ms
4,384 KB
testcase_29 AC 4 ms
4,384 KB
testcase_30 AC 5 ms
4,384 KB
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
using mint = modint1000000007;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf 1000000000



int main(){
	
	int n;
	cin>>n;
	
	string s,t;
	cin>>s>>t;
	
	if(s[0]!=t[0]||s[n-1]!=t[n-1]){
		cout<<-1<<endl;
		return 0;
	}
	vector<int> a,b;
	rep(i,n-1){
		if(s[i]!=s[i+1])a.push_back(i);
		if(t[i]!=t[i+1])b.push_back(i);
	}
	if(a.size()!=b.size()){
		cout<<-1<<endl;
		return 0;
	}
	long long ans = 0;
	rep(i,a.size())ans += abs(a[i]-b[i]);
	
	cout<<ans<<endl;
			
    return 0;
}
0