結果

問題 No.2209 Flip and Reverse
ユーザー ttkkggwwttkkggww
提出日時 2023-02-10 21:31:17
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 17 ms / 2,000 ms
コード長 530 bytes
コンパイル時間 4,017 ms
コンパイル使用メモリ 261,084 KB
実行使用メモリ 5,604 KB
最終ジャッジ日時 2023-09-21 22:34:42
合計ジャッジ時間 5,939 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 2 ms
4,376 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 AC 1 ms
4,376 KB
testcase_07 AC 2 ms
4,376 KB
testcase_08 AC 9 ms
5,396 KB
testcase_09 AC 2 ms
4,376 KB
testcase_10 AC 2 ms
4,380 KB
testcase_11 AC 2 ms
4,380 KB
testcase_12 AC 2 ms
4,380 KB
testcase_13 AC 2 ms
4,380 KB
testcase_14 AC 17 ms
5,480 KB
testcase_15 AC 17 ms
5,408 KB
testcase_16 AC 16 ms
5,444 KB
testcase_17 AC 17 ms
5,408 KB
testcase_18 AC 17 ms
5,416 KB
testcase_19 AC 17 ms
5,484 KB
testcase_20 AC 17 ms
5,396 KB
testcase_21 AC 17 ms
5,600 KB
testcase_22 AC 17 ms
5,420 KB
testcase_23 AC 17 ms
5,496 KB
testcase_24 AC 15 ms
5,468 KB
testcase_25 AC 15 ms
5,408 KB
testcase_26 AC 15 ms
5,408 KB
testcase_27 AC 15 ms
5,412 KB
testcase_28 AC 9 ms
5,412 KB
testcase_29 AC 9 ms
5,396 KB
testcase_30 AC 9 ms
5,392 KB
testcase_31 AC 9 ms
5,408 KB
testcase_32 AC 8 ms
5,604 KB
testcase_33 AC 9 ms
5,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#include<atcoder/all>
using namespace atcoder;
using ll = long long;
int n;
string s,t;

void solve(){
	int ans = n;
	int cur = 0;
	for(int i = n-1;i>=0;i--){
		if(s[i]!=t[i]){
			cur++;
		}
	}
	if(cur%2==0){
		ans = cur;
	}
	reverse(s.begin(),s.end());
	cur = 0;
	for(int i = n-1;i>=0;i--){
		if(s[i]!=t[i]){
			cur++;
		}
	}
	if(cur%2==1){
		ans = min(ans,cur);
	}
	cout<<ans<<endl;
}

signed main(){
	cin.tie(nullptr);
	ios::sync_with_stdio(false);
	cin >> n >> s >> t;
	solve();
}
0