結果

問題 No.2209 Flip and Reverse
ユーザー nono00nono00
提出日時 2023-02-10 23:17:06
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 713 bytes
コンパイル時間 2,117 ms
コンパイル使用メモリ 200,712 KB
実行使用メモリ 7,188 KB
最終ジャッジ日時 2024-07-07 17:14:49
合計ジャッジ時間 4,699 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i, l, r) for (int i = (int)(l); i < (int)(r); i++)
#define rrep(i, r, l) for (int i = (int)(r); i > (int)(l); i--)
#define all(a) (a).begin(), (a).end()
#define rall(a) (a).rbegin(), (a).rend()


void solve() {
    int n;
    string s, t;
    cin >> n >> s >> t;

    int ans = 1e9;
    rep(i, 0, 2) {
        int now = 0;
        rep(j, 0, n) {
            if (s[j] != t[j]) {
                now++;
            }
        }
        if (now % 2 == i) {
            ans = min(ans, now);
        }
        reverse(s.begin(), s.end());
    }
    cout << ans << '\n';
}

int main() {
    int t = 1;
    // cin >> t;
    while (t--) {
        solve();
    }
}
0